Cod sursa(job #871685)

Utilizator Gabryel9898Bizdoc Vasile Gabriel Gabryel9898 Data 5 februarie 2013 00:34:48
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.22 kb
#include<fstream>
using namespace std;
 
ifstream is("adunare.in");
ofstream os("adunare.out");
 
int main()
{
    int a, b;
    is >> a >> b;
    os << a + b;
 
    is.close();
    os.close();
 
    return 0;
}