djfz-2023-s473575/TaskX02/run.py

7 lines
73 B
Python
Raw Permalink Normal View History

2023-10-15 16:42:49 +02:00
import sys
count = 0
for line in sys.stdin:
count += 1
print(count)