Cod sursa(job #1573010)

Utilizator Dragos27092000Bilcu Dragos-Gabriel Dragos27092000 Data 19 ianuarie 2016 11:55:06
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.24 kb
#include <fstream>

using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int a,b,s;
int main()
{
    f>>a;
    f>>b;
    s=a+b;
    if(s<=2000000000)
        g<<s;
    f.close (); g.close();
    return 0;
}