Exerpad
Exercise 4 · Chapter: ListsRequired+50 XP

Find Biggest

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:

3
5
2
8

Example output:

8
Need a hint?
3 available · costs 5 XP each
python

Output
Run your code to see the output here.