백준
[2741] N 찍기
Jcoder
2018. 5. 14. 21:52
#include <stdio.h>int main(){int n, i;scanf("%d", &n);for(i=1; i<=n; i++){printf("%d\n", i);}return 0;}