The issue here is that your loop starts at 0, which causes the first printed value to be 0. You can fix this by starting from 1 instead. Here's the corrected code.
>>> for i in range(1, int(input()) + 1):