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)
top of page

실제 작동 상태를 확인하려면 라이브 사이트로 이동하세요.
20250425
20250425
댓글 0개
좋아요
댓글(0)
bottom of page