data quote; infile datalines dlm=','; input x y$; datalines; 10,"100" ; run; What will be the output?
x y {10 }
Syntax Error due to the double quotes
x y { 10 "100" }
x y { 10 100 }