We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Prepare
- Python
- Math
- Triangle Quest
- Discussions
Triangle Quest
Triangle Quest
Sort by
recency
|
1013 Discussions
|
Please Login in order to post a comment
for i in range(1,int(input())): print(sum(list(map(lambda x: 10**(i-(x+1)), range(i))))*i)
print(int((((10**i)-1)/9)*i))
for i in range(1,int(input())): #More than 2 lines will result in 0 score. Do not leave a blank line also print((((10**i)*i)-i)//9)
for i in range(1, int(input())): print(int((((10**i)-1)/9)*i))