1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
def bunhaehap(n):
num=list(map(int, str(n)))
ans=n+sum(num)
return ans
n=int (input())
cnt=0
while bunhaehap(cnt)!=n:
if cnt==n:
cnt=0
break
else:
cnt+=1
print(cnt)
|
cs |
반응형
댓글