Maximum
This Program name is Maximum. Write a Python program to Maximum, it has two test cases
The below link contains Maximum question, explanation and test cases
https://docs.google.com/document/d/1z0yr9wfjkiTADlYer1IJgNn2w8x3_HJG/edit?usp=sharing&ouid=104486799211107564921&rtpof=true&sd=true
We need exact output when the code was run
n = int(input())
line = []
for i in range(0, n):
line.append(input())
print(max(line))
Comments
Leave a comment