/**
 * an application which adds two numbers
 *
 * @version	$Id: Somme.java,v 1.1.2.1 2003/10/29 22:12:20 nthiery Exp $
 * @author	Nicolas M. Thiéry <nthiery@users.sourceforge.net>
**/

public class Somme {
    
    public static void main(String[] args) {
	if (args.length!=2) {
	    System.out.print("Usage: java Somme 2 5\n");
	} else {
	    int x=Integer.parseInt(args[0]);
	    int y=Integer.parseInt(args[1]);
	    System.out.println(""+(x+y));
	}
    }
    
}
