codeflash-internal/experiments/pie_test_set/p02741.py

39 lines
455 B
Python

def problem_p02741(input_data):
A = [
1,
1,
1,
2,
1,
2,
1,
5,
2,
2,
1,
5,
1,
2,
1,
14,
1,
5,
1,
5,
2,
2,
1,
15,
2,
2,
5,
4,
1,
4,
1,
51,
]
k = int(eval(input_data))
return A[k - 1]