Cod sursa(job #1524226)
Utilizator | Data | 13 noiembrie 2015 18:22:20 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | java | Status | done |
Runda | Arhiva de probleme | Marime | 0.25 kb |
package com.company;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
int a=input.nextInt();
int b=input.nextInt();
System.out.print(a+b);
}
}