Write a program that takes three numbers as input from the user, and prints the largest.


Sample Run

Enter a number: 20

Enter a number: 50

Enter a number: 5


Largest: 50

Hint: Remember that the numbers should be compared numerically. Any input from the user must be transformed into an integer, but printed as a string. code using python