Here's the complete solution: python n = int(input()) print(*range(1, n + 1), sep="") Let's break it down: int(input()) reads the input and converts it to an integer.
range(1, n + 1) generates numbers through n.
The * unpacks the range so each number becomes a separate print argument.
sep="" removes all separators. Submit this and you should pass all test cases.