Cod sursa(job #1724895)

Utilizator andreea.anichiti@yahoo.roAnichiti Andreea [email protected] Data 4 iulie 2016 15:21:33
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.2 kb
#include <fstream>

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

int main()
{   int a,b;
    long long s;
    f>>a>>b;
    s=a+b;
    g<<s;


    return 0;
}