tb0009.pp 242 B

12345678910111213141516
  1. { Old file: tbs0012.pp }
  2. { tests type conversation byte(a>b) OK 0.9.9 (FK) }
  3. var
  4. a,b : longint;
  5. begin
  6. a:=1;
  7. b:=2;
  8. if byte(a>b)=byte(a<b) then
  9. begin
  10. writeln('Ohhhh');
  11. Halt(1);
  12. end;
  13. end.