arr = [] for i in range(0, 3): arr.append(input("Enter a number: ")) print("Largest: " + str(max(arr)))