Skip to content
Snippets Groups Projects
9.py 112 B
Newer Older
hacker717's avatar
hacker717 committed
arr = []

for _ in range(int(input())):
    arr.append(str(max([int(i) for i in input()])))

print("".join(arr))