Cod sursa(job #1890738)

Utilizator therealmanMao-Chi therealman Data 23 februarie 2017 14:37:02
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.21 kb
#include <fstream>
#include <iostream>

using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int A,B;
int main()
{
    f>>A>>B;
    cout<<A+B;
     g<<A+B;



    return 0;
}