2.8 question 1 code practice
Answers
Answered by
9
Answer:
a = int(input("Enter a number: "))
b = int(input("Enter a number: "))
c = int(input("Enter a nukmber"))
highest = max(a,b,c)
print("Largest: " + str(highest))
Explanation:
There you go
Similar questions