#25518: python3


qqq123456 (suiyu)


python3 Na

a = input()
for i in range(int(a)):
    b = input()
    l = []
    l.append(b)
s = max(l)
print(s)
#25519: Re:python3


asnewchien@gmail.com (david)


python3 Na

a = input()
for i in range(int(a)):
    b = input()
    l = []
    l.append(b)
s = max(l)
print(s)


list 要宣告在迴圈外面。

#25520: Re:python3


asnewchien@gmail.com (david)


收回回答。