COCI 2009/2010, Contest #3
Task FILIP
Mirko has a younger brother, Filip, who just started going to school and is having trouble with numbers. To help him get the hang for number scale, his teacher writes two three digit numbers. She asks Filip to compare those numbers, but instead of interpreting them with the leftmost most significant digit, he needs to interpret them the other way around, with the most significant digit being the rightmost one. He than has to tell the teacher the larger of the two numbers.
Write a program that will check Filip's answers.
Input
The first and only line of input contains two three digit numbers, A and B. A and B will not be equal and will not contain any zeroes.
Output
First and only line of output should contain the larger of the numbers in the input, compared as described in the task. The number should be written reversed, to display to Filip how he should read it.
Sample Tests
Input734 893 Output437 |
Input221 231 Output132 |
Input839 237 Output938 |
All Submissions
Best Solutions
Point Value: 3
Time Limit: 1.00s
Memory Limit: 32M
Added: Jul 10, 2013
Languages Allowed:
C++03, PAS, C, HASK, ASM, RUBY, PYTH2, JAVA, PHP, SCM, CAML, PERL, C#, C++11, PYTH3
Comments (Search)
It's quiet in here...