Pagini recente » Cod sursa (job #1673149) | Cod sursa (job #1438362) | Cod sursa (job #1430051) | Cod sursa (job #1871415) | Cod sursa (job #1430935)
/*
* 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();
}
}