Pagini recente » Cod sursa (job #2127027) | Cod sursa (job #1668551) | Cod sursa (job #2724654) | Cod sursa (job #1739404) | Cod sursa (job #2452320)
import java.io.*;
import java.util.*;
public class Main {
public static void main(String[] args) throws FileNotFoundException {
Scanner scanner = new Scanner(new FileInputStream("C:\\Users\\FloriNA\\Desktop\\A+B\\src\\adunare.in"));
PrintStream writer = new PrintStream("C:\\Users\\FloriNA\\Desktop\\A+B\\src\\adunare.out");
int a = Integer.parseInt(scanner.nextLine());
int b = Integer.parseInt(scanner.nextLine());
int sum = a + b;
writer.println(sum);
}
}