def f(n, m) :
b=n%12
c=n%10
b+=6
if b>12 :
b-=12
c+=10
if c>10 :
c-=10
if m==1 :
print(chr(64+b), end='')
print(c-1)
else :
print(chr(76-b), end='')
print(c-1)
a=int(input())
if a>=2013 :
a-=2013
f(a, 1)
else :
a=2013-a
f(a, 2)top of page

실제 작동 상태를 확인하려면 라이브 사이트로 이동하세요.
20250418
20250418
댓글 0개
좋아요
댓글(0)
더 이상 게시물에 대한 댓글 기능이 지원되지 않습니다. 자세한 사항은 사이트 소유자에게 문의하세요.
bottom of page


