djfz-2023-s464933/TaskX02/run.py
2023-11-19 22:42:11 +01:00

7 lines
73 B
Python

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