public class Main {
public static void main(String[] args) throws IOException {
// 시작할 때
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
// 한 줄 통째로 읽을 때
String str = br.readline();
// 텍스트를 한 줄 읽어서 단어(띄어쓰기)로 나눌 때
StringTokenizer st = new StringTokenizer(br.readLine());
// 한 줄을 토큰으로 나눠서 숫자 받을 때
int num = Integer.parseInt(st.nextToken());
// 끝날 때
br.close();
}
}