import java.io.*;
class j {
  public static void main(String args[]) throws IOException {
    BufferedReader stdin = new BufferedReader(new InputStreamReader(System.in));
    String buf;
    int i1,i2,i3;
    buf = stdin.readLine();
    i1 = Integer.parseInt(buf);
    buf = stdin.readLine();
    i2 = Integer.parseInt(buf);
    i3 = i1 + i2;
    System.out.println("Output is "+i1+" + "+i2+" = "+i3);
  }
}