Pagini recente » Cod sursa (job #261946) | Cod sursa (job #2085700) | Cod sursa (job #1753228) | Cod sursa (job #2537813) | 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);
}
}