Cod sursa(job #2053115)

Utilizator TheSlorrow44Tudose George Stefan TheSlorrow44 Data 31 octombrie 2017 15:32:33
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.27 kb
#include <iostream>
#include <fstream>

using namespace std;

int main()
{
    int A,B,s;
    ifstream in("adunare.in.txt");
    in>>A;
    in>>B;
    s=A+B;
    in.close();
    ofstream out("adunare.out.txt");
    out<<s;
    out.close();
    return 0;
}