1 2 3 4 5 6 7 8 9 10 11 12 | import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int count = sc.nextInt(); for (int i=1; i<=count; i++){ System.out.println(i); } } } | cs |
프로그래밍 문제/백준