mirror of
https://github.com/codeflash-ai/codeflash-internal.git
synced 2026-05-04 18:25:18 +00:00
39 lines
455 B
Python
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]
|