fork download
  1. program ideone;
  2. var a,b,c:integer;
  3. begin
  4. read(a,b,c);
  5. if a<b or a=b and b<c or b=c
  6. then
  7. write('YES');
  8. if a>b or b>c
  9. then
  10. write('NO');
  11.  
  12. end.
  13.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Free Pascal Compiler version 3.0.4+dfsg-22 [2019/01/24] for x86_64
Copyright (c) 1993-2017 by Florian Klaempfl and others
Target OS: Linux for x86-64
Compiling prog.pas
prog.pas(5,5) Error: Incompatible types: got "Boolean" expected "Int64"
prog.pas(8,5) Error: Incompatible types: got "Boolean" expected "Int64"
prog.pas(13,1) Fatal: There were 2 errors compiling module, stopping
Fatal: Compilation aborted
Error: /usr/bin/ppcx64 returned an error exitcode
stdout
Standard output is empty