"""n=int(input())
a=[]
y=100000
for i in range(n) :
x = list(map(int, input().split()))
a.append(x)
for i in range(len(a)) :
for j in range(len(a)) :
if i!=j :
x1, y1 = a[i][0], a[i][1]
x2, y2 = a[j][0], a[j][1]
e=0
e=((x1-x2)**2+(y1-y2)**2)**0.5
if e<=y :
y=e
print('%.1f'%y)
#제곱근(루트) 계산 방법=>a**0.5
#제곱 계산 방법=>a**2(2제곱)"""
'''x1, y1 = map(int, input().split())
x2, y2 = map(int, input().split())
distance = ((x1-x2)**2 + (y1-y2)**2)**0.5'''
a=list(input())
c=0
for i in range(10000) :
b=a.reverse
c+=1
d=''.join(str(b) for x in a)
top of page

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