djfz-2023-s464933/TaskX02/run.py

7 lines
73 B
Python
Raw Normal View History

2023-11-19 22:42:11 +01:00
import sys
count = 0
for line in sys.stdin:
count += 1
print(count)