Cod sursa(job #535081)

Utilizator AlinCAlin C AlinC Data 16 februarie 2011 18:58:58
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.28 kb
/*
    Data:
    Problema:    
*/

#include <iostream>
#include <fstream>
#include <ios>
using namespace std;

int main()
{
int a,b,s;
ifstream in("adunare.in");
{
in>>a;
in>>b;
}
ofstream of("adunare.out");
s=a+b;
of<<s;
    system("pause");
    return 0;
}