Cod sursa(job #2251344)

Utilizator baciuandreiBaciu Andrei baciuandrei Data 1 octombrie 2018 14:15:17
Problema A+B Scor 100
Compilator cpp Status done
Runda teme_upb Marime 0.2 kb
#include <fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
 
int main()
{
    long int a,b;
    f>>a>>b;
    g<<a+b;
    f.close();
    g.close();
    return 0;
}