8 lines
74 B
Python
8 lines
74 B
Python
import sys
|
|
|
|
count = 0
|
|
for line in sys.stdin:
|
|
count += 1
|
|
|
|
print(count)
|