Cod sursa(job #2485043)

Utilizator GeorgeStreyStresna George GeorgeStrey Data 31 octombrie 2019 21:51:01
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.28 kb
#include <iostream>

using namespace std;

ifstream fin("adunare.in");
ofstream fout("adunare.out")
int main()
{
    int a ;
    int b ;
    int c ;
    fin>> a ;
    fin>>b ;
    c = a + b ;
    if (c < 2000000000)
    {
        fout << c << endl;
    }
    return 0;
}