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

8 lines
72 B
ObjectPascal

program main;
var
a: integer;
begin
a := 10;
write(a mod 3);
end.