Pagini recente » Cod sursa (job #3293681) | Cod sursa (job #1371813) | Cod sursa (job #2330727) | Cod sursa (job #2319034) | Cod sursa (job #2581638)
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package helloworld;
import java.util.Scanner;
/**
*
* @author kingofoxy
*/
class HelloWorld {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
int a, b;
try(Scanner sc = new Scanner(System.in)) {
a = sc.nextInt();
b = sc.nextInt();
}
System.out.println(a + b);
}
}