fork download
  1. program multiplicacao;
  2. var
  3. x,y: integer;
  4. r: integer;
  5. Begin
  6. readln x;
  7. readln y;
  8. r:=x*y;
  9. writeln r;
  10. end.
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.pas: In main program:
prog.pas:6: error: syntax error before `x'
stdout
Standard output is empty