Input 3 marks and find the largest of all. it's a question from flow chart part of python. so what will be the output if it!!!
Answers
Answered by
0
Answer:
a=input("Enter A")
b=input("Enter B")
c=input("Enter C")
if a>b and a>c:
print(a, " is largest")
elif b>a and b>c:
print(b, " is largest")
else:
print(c, " is largest"
Explanation:
Similar questions