import java.util.Scanner;



public class Add {

static public void main(String[] args) throws Exception{

Scanner sc = new Scanner(System.in);

int n = sc.nextInt();

System.out.println(n);

}

}



대충 이정도까지 만들어봤는데 
이클립스는 실행한다고 cmd창 뜨는것도 아니고 .. 몰겠네여
저기 int n =sc.nextInt() 부분에서 입력해주려면 어떻게 해야함?

제가 혹시 잘못 짠건가염