6 lines
131 B
Python
6 lines
131 B
Python
import sys
|
|
problem_name = str('mushroom')
|
|
sys.stdin = open(problem_name + ".in", "r")
|
|
sys.stdout = open(problem_name+".out", "w")
|
|
|