package yukiCoder; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class No09001 { public static void main(String[] args) { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int a = 0; int b = 0; String s = null; try { String[] input = new String[2]; input = br.readLine().split(" "); a = Integer.parseInt(input[0]); b = Integer.parseInt(input[1]); s = br.readLine(); } catch (IOException e) { System.out.println("IOError"); } catch (NumberFormatException e) { System.out.println("could not convert to integer"); } System.out.print(a + b + " " + s); } }