2. integers before an Write a program to take two integer arguments in a method void Small() to print the smallest integer.
please send correct answer
Answers
Answered by
0
Answer:
def Small(first, second):
return min(first, second)
first_num = input()
second_num = input()
print(Small(first_num, second_num))
Explanation:
I don't know what language you are using, but I'm going to use Python 3x.
Similar questions