On Excel, you click the Formulas tab.
I'm not sure but I think d. Webmaster
Answer:
first = int(input("Enter first number "))
second = int(input("Enter second number "))
third = int(input("Enter third number "))
largest = max([first, second, third]);
print("The largest number is", largest)
Explanation:
There you go!