#largestnumber of the these three numbers (enter 3 input values/Numbers)
num1 = float(input("Enter the Number"))
num2 = float(input("Enter the Number"))
num3 = float(input("Enter the Number"))
if (num1>=num2) and (num1>=num3):
largest=num1
elif (num2>=num1) and (num2>=num3):
largest=num2
else:
largest=num3
print("largest num is",largest)
num1 = float(input("Enter the Number"))
num2 = float(input("Enter the Number"))
num3 = float(input("Enter the Number"))
if (num1>=num2) and (num1>=num3):
largest=num1
elif (num2>=num1) and (num2>=num3):
largest=num2
else:
largest=num3
print("largest num is",largest)