Challenge #7 - Print Function

if __name__ == '__main__':
    n = int(input())
    result = 0
    for i in range(1,n+1):
        print(i, end = '')

Comments

Popular posts from this blog

Challenge - #48 - Incorrect Regex

Challenge - #43 - Time Delta

Challenge - #52 - Set .discard(), .remove(), & .pop()