Write a program that finds the biggest number in a list.
The first line of input tells you how many numbers there are. Then each following line has one number. Read all the numbers into a list, then print the biggest one.
Example input:
text
3 5 2 8
Example output:
text
8
💡 Hints
?Hint 1
🔒Hint 2
🔒Hint 3
python