fork download
  1. program multiplicacao;
  2. var
  3. x,y: integer;
  4. r: integer;
  5. Begin
  6. read x;
  7. read y;
  8. r:=x*y;
  9. write 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: warning: `Read' without variables to read -- ignored
prog.pas:6: error: syntax error before `x'
stdout
Standard output is empty