Pagini recente » Cod sursa (job #1000527) | Diferente pentru dot-com/2012/runda-2 intre reviziile 7 si 8 | Cod sursa (job #1766144) | Cod sursa (job #936793) | Cod sursa (job #1537145)
import java.io.*;
import java.util.*;
public class Main {
public static void main(String[] argv) throws IOException {
Scanner fin = new Scanner(new FileInputStream("F:\\Temp\\adunare.in"));
PrintStream fout = new PrintStream("F:\\Temp\\adunare.out");
int x, y;
x = fin.nextInt();
y = fin.nextInt();
fout.println(x+y);
fin.close();
}
}