/**
 * CMPU 125 Fall 2008
 * Lab 2, Sept 19
 * <your name here>
 * 
 * RevPolish.java
 * ----------------------
 * This program takes 2 integer operands
 * from the command line, adds them and 
 * prints the result to the screen.
 */

public class RevPolish {
  public static void main (String[] args) {
    
    int operand1 = Integer.parseInt(args[0]);
    int operand2 = Integer.parseInt(args[1]);
    
    System.out.println( operand1 + " + "+ operand2 + " = "+
                       (operand1 + operand2));
  }
}