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