n,m,k=map(int, input().split())
data=list(map(int, input().split()))
for i in data:
print(i)
#consequence=2 3 4 5 6
for i in data:
print(max(i))
#consequence= TypeError: 'int' object is not iterable
If int is iterable, then why I can use int in for loop? Why I cannot use max() function in this case?