Pagini recente » Profil UVG_Sava_Preda_Barbuta | Borderou de evaluare (job #1575041) | Profil UVG_Sava_Preda_Barbuta | Profil UVG_Sava_Preda_Barbuta | Cod sursa (job #1840989)
import java.io.*;
import java.util.*;
class Main {
public static void main(String[] args) {
try {
Scanner sc = new Scanner(new File("adunare.in"));
try {
PrintWriter writer = new PrintWriter("adunare.out", "UTF-8");
writer.println(sc.nextInt() + sc.nextInt());
writer.close();
} catch (FileNotFoundException e) {
}
sc.close();
} catch (IOException e) {
}
}
}