
public class CommandLineArg {

	
	public static void main(String[] args) {
		int n = Integer.parseInt(args[0]);
		System.out.println(n);
	}

}
