Number output
Problem
Given two integer numbers. Output the first one if it is greater than the second and both numbers if it is not.
Input format
The program receives as input two different integers written on the same line, separated by a space.
Output format
Output the first number if it is greater than the second, or output both numbers if the first number is not greater than the second.
Examples
№ |
Input |
Output |
1 |
5 3 |
5 |
2 |
3 5 |
3 5 |