write a python program to accept three number display largest of three
Answers
Answered by
9
Answer:
sorry I didn't know about the answer
Answered by
3
Answer:
a=int(input())
b=int(input())
c=int(input())
if a>b and a>c:
print( a,"is the largest number")
elif(b>c):
print(b,"is the largest number")
else:
print(c," is the largest number")
Similar questions