Cod sursa(job #1430649)
Utilizator | Data | 8 mai 2015 18:24:35 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | java | Status | done |
Runda | teme_upb | Marime | 0.44 kb |
import java.io.*;
import java.util.*;
public class Main {
public static void main(String[] args) throws FileNotFoundException
{
Scanner r = new Scanner(new FileInputStream("adunare.in"));
int a, b, suma;
a = r.nextInt();
b = r.nextInt();
suma = a + b;
PrintWriter w = new PrintWriter("adunare.out");
w.write(suma + "");
w.close();
r.close();
}
}