2.7 Code Practice: Question 1 answer
Answers
Answered by
3
Answer:
What is the question please tell!........
Answered by
4
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)))
Explanation:
Similar questions