Cod sursa(job #1245358)
Utilizator | Data | 18 octombrie 2014 23:50:46 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | java | Status | done |
Runda | Arhiva de probleme | Marime | 0.45 kb |
import java.util.*;
import java.io.*;
class Main {
public static void main(String[] args) throws IOException{
Scanner sc = new Scanner(new File("adunare.in"));
PrintWriter pw = new PrintWriter(new File("adunare.out"));
long a = sc.nextInt();
long b = sc.nextInt();
long suma = a + b;
pw.print(suma);
pw.close();
}
}