djfz-2023-s473575/TaskX02/run.py
2023-10-15 16:42:49 +02:00

7 lines
73 B
Python

import sys
count = 0
for line in sys.stdin:
count += 1
print(count)