Smaller Of Two Numbers

You are given two integer numbers as input, print the smaller one of them. If both are equal, print any of them.

Example 1

Input

10 11

Output

10

Example 2

Input

12 5

Output

5

Example 3

Input

3 9

Output

3

Test your solution here
when it passes, copy it and submit it here so your coach can grade it.