Cod sursa(job #1871280)
| Utilizator | Data | 7 februarie 2017 11:24:23 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | java | Status | done |
| Runda | Arhiva de probleme | Marime | 0.37 kb |
import java.io.*;
import java.util.Scanner;
class Main {
public static void main(String[] args) throws IOException, FileNotFoundException {
Scanner fin = new Scanner(new File("adunare.in"));
PrintWriter fout = new PrintWriter("adunare.out");
int a, b;
a = fin.nextInt();
b = fin.nextInt();
fout.println(a+b);
fin.close();
fout.close();
}
}
