Cod sursa(job #822417)

Utilizator Cr7_UistUTothazan Dragos Cr7_UistU Data 23 noiembrie 2012 15:07:52
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.2 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;

}