231k views
4 votes
2.7 Code Practice: Question 2

User Andyfinch
by
5.0k points

1 Answer

2 votes

Answer:

first = int(input("Enter a number: "))

second = int(input("Enter a number: "))

third = int(input("Enter a number: "))

print("Largest: " + str(max(first,second,third)))

Step-by-step explanation:

ez 100%

User MatrixTXT
by
5.1k points