The NOTE about SA:
In line 81 (i.e. the 10th line of data following the DATALINES statement), there is invalid data for variable SA in column 32. SAS has printed out the offending line, preceded by a ruler for identifying column numbers. It shows the letter capital O in column 32 - an invalid character for the numeric variable SA (maybe you intended it to be a zero).
The "LOST CARD" note:
Given your INPUT statement specifies 5 variables, SAS expects there to be a multiple of 5 fields over all the lines of data between DATALINES and the semi-colon trailing your inline data. But somewhere there are up to 4 extra fields or up to 4 missing fields in the data.
The second note is not due to the cause of the first note in my simulation of your code and data.