8 lines
94 B
Python
8 lines
94 B
Python
|
import sys
|
||
|
|
||
|
from shunting import shunt
|
||
|
|
||
|
|
||
|
for line in sys.stdin:
|
||
|
print shunt(line.split())
|