To accept two different numbers. Multiply the smaller number by 5 and print the result.
pjgaikar06:
In which language we have to do it???
Answers
Answered by
2
int a = 13;
int b= 5;
if (a> b)
Answered by
0
one = int(input("1st number"))
two = input("2nd number")
result = one * 5
print(result)
Similar questions