Pagini recente » Cod sursa (job #1324836) | Diferente pentru jc2021/solutii intre reviziile 1 si 13 | Cod sursa (job #2627574) | Cod sursa (job #1350638) | Cod sursa (job #1537138)
import java.io.*;
import java.util.*;
public class Main {
/*
* @throws java.io.IOException
*/
public static void main() 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);
}
}