Cod sursa(job #1245365)
Utilizator | Data | 19 octombrie 2014 00:04:03 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | java | Status | done |
Runda | Arhiva de probleme | Marime | 0.5 kb |
import java.util.Scanner;
import java.io.*;
public class Main {
public static void main(String[] args) throws IOException{
Scanner sc = new Scanner(new File("adunare.in"));
//PrintWriter pw = new PrintWriter(new File("adunare.out"));
//int a = sc.nextInt();
//int b = sc.nextInt();
//int suma = a + b;
//pw.print("0");
sc.close();
//pw.close();
}
}