Dora is in first grade. Her brother Darwin wants her sister to participate in Math Olympiad. Darwin gives two numbers to Dora. She has to tell the smallest number among them. Can you create a program for the same.
Input should be two integers.
Answers
Answered by
0
```
language used is python
```
x = int( input () )
y = int( input () )
if x > y:
print (x)
else:
print (y)
Similar questions