Pagini recente » Cod sursa (job #2971521) | Cod sursa (job #1408840) | Cod sursa (job #909621) | Diferente pentru problema/vampir intre reviziile 38 si 39 | Cod sursa (job #1559712)
import java.io.*;
import java.util.*;
public class sum {
public static void main(String[] args) throws IOException {
Scanner fin = new Scanner (new FileInputStream("adunare.in"));
PrintStream fout = new PrintStream("adunare.out");
int a,b;
a=fin.nextInt();
b=fin.nextInt();
fin.close();
fout.println(a+b);
fout.close();
}
}