COCI '09 Contest 3 #1 Filip

View as PDF

Submit solution


Points: 3
Time limit: 1.0s
Memory limit: 32M

Problem type

Mirko has a younger brother, Filip, who just started going to school and is having trouble with numbers. To help him get the hang of the 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 then has to tell the teacher the larger of the two numbers. Write a program that will check Filip's answers.

Input Specification

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 Specification

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 Input 1

734 893

Sample Output 1

437

Sample Input 2

221 231

Sample Output 2

132

Sample Input 3

839 237

Sample Output 3

938

Comments


  • 1
    candyappled  commented on Sept. 23, 2021, 6:23 p.m. edited

    Make sure that A is declared before B when working in C++.