/*----------------------------------------- | Here is a program with lots of errors. | | Try to fix it, leaving PROC and PRINT on | | separate lines if possible. | ------------------------------------------*/ Data temperatures; input /*embedded*/ city $ temp; cards; Miami 80 Cincinnati 47 St. Louis 43 Reno 75 proc print ; proc plot; plot city * temp; run;