program EXERCICIO; var A: real; begin writeln('Digite um número para A'); read(A); X:=A+B; writeln(X); end.
Standard input is empty
prog.pas: In main program: prog.pas:7: error: undeclared identifier `X' (first use in this routine) prog.pas:7: error: (Each undeclared identifier is reported only once prog.pas:7: error: for each routine it appears in.) prog.pas:7: error: undeclared identifier `B' (first use in this routine)
Standard output is empty