Problem:
Given an integer N, print numbers from 1 to N using a while loop.
Example:
Input:5 Output: 12345
Input:5 Output: 54321
Input:10 Output: 246810
Input:10 Output: 13579
Input:5 Output: 15