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