7 lines
		
	
	
		
			230 B
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			230 B
		
	
	
	
		
			Java
		
	
	
	
	
	
| public class Somme {
 | |
|     public static void main(String[] args) {
 | |
|         int somme = Integer.parseInt(args[0]) + Integer.parseInt(args[1]);
 | |
|         
 | |
|         System.out.println("La somme des nombres est : " + somme);
 | |
|     }
 | |
| } |