public class Main
{
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int n = Integer.parseInt(br.readLine());
System.out.println(n);
}
}
IOException을 throw할 가능성이 있으므로 적어주지 않으면 컴파일이 되지 않는다.