Pagini recente » Diferente pentru problema/vopsire intre reviziile 14 si 22 | Cod sursa (job #909502) | Cod sursa (job #990092) | Cod sursa (job #909793) | Cod sursa (job #1559722)
import java.io.*;
import java.util.*;
public class Main {
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();
}
}