Skip to content

Instantly share code, notes, and snippets.

@ivandenysov
Created September 21, 2016 15:25
Show Gist options
  • Save ivandenysov/67b52c3bc6e1e65d6db5982c06842f9e to your computer and use it in GitHub Desktop.
Save ivandenysov/67b52c3bc6e1e65d6db5982c06842f9e to your computer and use it in GitHub Desktop.
lab01_r04
program lab01_r04;
var a, b, c, d: integer;
begin
a:= 157 div 11;
b:= 28 div 5;
c:= 18 mod 17;
d:= 113 mod 45;
writeln(a);
writeln(b);
writeln(c);
writeln(d);
end.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment