write program
to find maximum number
out of two given members
Answers
Answered by
1
Answer:
Explanation:
a=int(input("enter the first number"))
b=int(input("enter the second number"))
if a>b:
print(a,'is the maximum value')
else:
print(b,"is the maximum value")
hope it helps you ☺️
Similar questions