# This program finds the largest among three # numbers a = input("Enter the 1st number: ") b = input("Enter the 2nd number: ") c = input("Enter the 3rd number: ") if a > b: lrgr = a else: lrgr = b if c > lrgr: lrgr = c print "Largest is: ", lrgr