posted by 귀염둥이채원 2019. 2. 27. 19:25

# sample.txt

2

5

5


# Template Code


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import java.io.FileInputStream;
import java.util.Scanner;
 
public class TEST {
    static int N;
    static int Answer;
 
    public static void main(String[] args) throws Exception {
        System.setIn(new FileInputStream("C:\\java\\SW\\sample.txt"));
        Scanner sc = new Scanner(System.in);
 
        int T = sc.nextInt();
        for (int test_case = 1; test_case <= T; test_case++) {
            Answer = N = sc.nextInt();
            System.out.println("#" + test_case + " " + Answer);
        }
    }
}
cs


# Result

#1 5

#2 5