Cod sursa(job #1300432)

Utilizator ioana443ioana cojocariu ioana443 Data 24 decembrie 2014 14:12:49
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
#include <fstream>
using namespace std;

ifsteam f("adunare.in");
ofstream g("adunare.out");
int a,b;

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