Computer Science, asked by agrawalsakshi0824, 10 months ago

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 sachinnarang
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