Computer Science, asked by nishugupta8076, 5 months ago

write a python program to accept three number display largest of three​

Answers

Answered by srigom59
9

Answer:

sorry I didn't know about the answer

Answered by harshini61999
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