'''
s = int(input())
a = []
c = 0
for i in range(s-1):
b = int(input())
a.append(b)
a.sort()
for i in range(s-1):
if i+1!=a[i] and c!=1:
print(i+1)
c+=1
if c==0:
print(s)
'''
'''
a = list(input())
b = [0]*26
l = len(a)
v = 97
r = 0
for i in range(l):
if 96<ord(a[i])<123:
b[ord(a[i])-97]+=1
for i in range(1, 27):
print(chr(v)+':', end='')
print(b[i-1])
v+=1
'''
'''
s = int(input())
b = format(s, 'b')
print(b)
'''
top of page

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


