7 lines
126 B
Python
7 lines
126 B
Python
|
test_case = raw_input()
|
||
|
if test_case == "1":
|
||
|
print "42"
|
||
|
if test_case == "2":
|
||
|
print "97"
|
||
|
if test_case == "3":
|
||
|
print "128"
|