Cod sursa(job #792705)

Utilizator symonaScheul Simona symona Data 29 septembrie 2012 11:20:08
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
#include<fstream>
using namespace std;
int a,b;
int main()
{
    ifstream f("adunare.in");
    ofstream g("adunare.out");
    f>>a>>b;
    g<<a+b;
    return 0;
}