i=int(input(“enter total numbers”))
c=[]
for j in range(i):
c.append(int(input(“Enter a number”)))
print(c)
d=max(c)
print(d)


Leave a Reply

Your email address will not be published. Required fields are marked *