Pagini recente » Cod sursa (job #964301) | Cod sursa (job #465212) | Cod sursa (job #1008752) | Cod sursa (job #1439457) | Cod sursa (job #1705338)
package test2;
import java.io.*;
import java.util.*;
public class Main {
static ArrayList<ArrayList<Integer>> adj;
static int[] visited ;
static int[] dist;
public static void main(String[] args) throws IOException {
Scanner br= new Scanner(new BufferedInputStream(new FileInputStream("adunare.in")));
PrintStream out = new PrintStream(new FileOutputStream("adunare.out"));
int n = br.nextInt();
int m = br.nextInt();
out.println(n+m);
}
}