school/cs235/lab04/bin/runner.py

8 lines
94 B
Python
Raw Normal View History

2016-04-06 20:46:10 -07:00
import sys
from shunting import shunt
for line in sys.stdin:
print shunt(line.split())