# 문제주소: https://www.acmicpc.net/problem/25314입력 받은 N바이트 크기의 정수를 출력하기. (4byte를 long int, 8byte는 long long int) # 코딩import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int N = Integer.parseInt(br.readL..