makrusak

Files

Oct 15th, 2012
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pascal 0.18 KB | None | 0 0
  1. var a,b,c:longint;
  2. begin
  3. assign(input, 'gorodok.in'); reset(input);
  4. assign(output, 'gorodok.out'); rewrite(output);
  5. read(a,b);
  6. c:=a+b;
  7. writeln(c);
  8. close(input); close(output);
  9. end.
Advertisement
Add Comment
Please, Sign In to add comment