ENG  RUSTimus Online Judge
Online Judge
Problems
Authors
Online contests
About Online Judge
Frequently asked questions
Site news
Webboard
Links
Problem set
Submit solution
Judge status
Guide
Register
Update your info
Authors ranklist
Current contest
Scheduled contests
Past contests
Rules
back to board

Discussion of Problem 1000. A+B Problem

So hard
Posted by Dmitry_GOLD 14 Sep 2012 18:44
var
a,b:integer;
begin
 readln(a,b);
 writeln(a mod 10 + a div 10 * 10 + b mod 10 + b div 10 * 10);
 readln;
end.
Re: So hard
Posted by iezepov 21 Sep 2013 03:19
=))