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