"""n=int(input())
a=[]
s=0
for i in range(n) :
b=0
b=int(input())
if b==0 :
a.pop()
else :
a.append(b)
for i in range(len(a)) :
s+=a.pop()
if s==0 :
print(0)
else :
print(s)"""
"""a=[]
b=[]
n=int(input())
a=list(map(int, list(input())))
for i in range(n) :
if (i+1)%3==0 :
b.append(a.pop())
if i+1!=n :
b.append(',')
else :
b.append(a.pop())
for i in range(len(b)) :
print(b.pop(), end='')"""
a=[]
b=[]
a=list(input())top of page

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


