/
#include <iostream> int main() { int N; std::cin >> N; int i = 1; while (i <= N) { std::cout << i; i++; } }