Canon/open_set/15_divc.pas
2024-03-09 20:11:27 +08:00

8 lines
72 B
ObjectPascal

{ test divc}
program main;
const
a = 10;
begin
write(a div 5);
end.