Cod sursa(job #822398)

Utilizator Cr7_UistUTothazan Dragos Cr7_UistU Data 23 noiembrie 2012 14:28:37
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.16 kb
#include <fstream>

using namespace std;

int main()
{int n,m;
ifstream f("adunare.in");
ofstream g("adunare.out");
f>>n>>m;
g<<n+m;
    return 0;
}