Problem Statement
Write a program that reads a list of integers from the user and determines the largest number in the list.
Steps to Implement
- First, read the number of integers
nthat will follow. - Then, read
nintegers one by one. - Determine and print the maximum number among them.
Your output should exactly match the format shown in the examples below.