Pagini recente » Cod sursa (job #1119256) | Cod sursa (job #2258575) | Cod sursa (job #2212064) | Cod sursa (job #1483805) | 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);
}
}