Pagini recente » Cod sursa (job #542380) | Cod sursa (job #2477959) | Cod sursa (job #442167) | Cod sursa (job #1795561) | Cod sursa (job #1345028)
import java.io.*;
import java.util.*;
import java.text.*;
import java.math.*;
import java.util.regex.*;
class Main{
public static void main(String[] args) throws FileNotFoundException, UnsupportedEncodingException {
Scanner scanner = new Scanner(new File("modulo.in"));
int base = scanner.nextInt();
int exponent = scanner.nextInt();
}
try (PrintWriter writer = new PrintWriter("modulo.out", "UTF-8")) {
writer.println(base +exponent );
}
}
}
//