5 lines
74 B
Python
5 lines
74 B
Python
n=int(input())
|
|
|
|
for i in range(1,n+1):
|
|
print("#"+str(i),int(input())//3)
|