20250425
def f(n) :
b=n%12
c=n%10
b+=9
if b>12 :
b-=12
c+=6
if c>10 :
c-=10
print(chr(64+b), end='')
print(c)
a=int(input())
f(a)1회 조회


def f(n) :
b=n%12
c=n%10
b+=9
if b>12 :
b-=12
c+=6
if c>10 :
c-=10
print(chr(64+b), end='')
print(c)
a=int(input())
f(a)