public class hello { public static int readInt() throws IOException { return Integer.parseInt(stdin.readLine().trim()); } public static void main(String[] args) { int i = readInt(); System.out.println("Hello, World! " + i); } }