Python Program to find biggest of three numbers

Program

a = float(input("Enter the first number: "))
b = float(input("Enter the second number: "))
c = float(input("Enter the third number: "))
if(a > b) and (a > c):
	largest = a
elif (b > c):
	largest = b
else:
	largest = c
print "Largest number is: ", largest

Output 1

Enter the first number: 65
Enter the second number: 12.3
Enter the third number: 54.1987
Largest number is:  65.0

Output 2

Enter the first number: 19
Enter the second number: 34.85
Enter the third number: 9.011
Largest number is:  34.85

Output 3

Enter the first number: 65
Enter the second number: 1
Enter the third number: 98
Largest number is:  98.0