#include <iostream>
using namespace std;
int main(void)
{
int N = 0;
cin >> N;
if (N>=1 and N<=100000)
{
for (int i=1; i<=N; i++)
{
cout << i << '\n';
}
}
}
'Computer Science > 백준 알고리즘' 카테고리의 다른 글
[백준] 2747번 피보나치 수 (파이썬) (0) | 2022.03.17 |
---|---|
[백준] 2742번 기찍 N (C++) (0) | 2022.03.16 |
[백준] 2739번 구구단 (C) (0) | 2022.03.16 |
[백준] 2675번 문자열 반복 (파이썬) (0) | 2022.03.16 |
[백준] 2588번 곱셈 (C++) (0) | 2022.03.16 |