djfz-2023-s464986/TaskX02/run.py

8 lines
74 B
Python

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