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