FILIP - Filip

no tags 

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 left-most most significant digit, he needs to interpret them the other way around, with the most significant digit being the right-most one. He than has to tell the teacher the larger of the two numbers. Write a program that will check Filips 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.

Example

Input:
734 893

Output:
437
Input:
221 231

Output:
132
Input:
839 237

Output:
938


Added by:.:: Pratik ::.
Date:2010-01-12
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: OBJC SQLITE
Resource:COCI 2009/2010 CONTEST #3