Cod sursa(job #458273)

Utilizator novaBudau Radu-Stefan nova Data 24 mai 2010 12:19:53
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.16 kb
#include<fstream.h>

ifstream f("adunare.in");
ofstream g("adunare.out");

int a,b;

int main()
{
    f>>a;
    f>>b;
    g<<a+b<<"\n";
    return 0;
}