Pagini recente » Monitorul de evaluare | Cod sursa (job #2195898) | Cod sursa (job #1126114) | Cod sursa (job #2713087) | 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 );
}
}
}
//