Pagini recente » Cod sursa (job #32536) | Cod sursa (job #3156729) | Cod sursa (job #2509985) | Cod sursa (job #2536707) | Cod sursa (job #1430942)
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author livv
*/
import java.util.*;
import java.io.*;
public class Main {
public static void main(String [] args) throws IOException
{
int a,b;
Scanner s=new Scanner(new FileInputStream("adunare.in"));
a=s.nextInt();
b=s.nextInt();
FileWriter out=new FileWriter("adunare.out");
out.write(""+(a+b));
out.close();
}
}