Cod sursa(job #2386689)

Utilizator Costin1308Costin Cristian Alexandru Costin1308 Data 23 martie 2019 14:29:14
Problema A+B Scor 0
Compilator cpp-32 Status done
Runda Arhiva de probleme Marime 0.22 kb
#include<iostream>
#include<fstream>
using namespace std;
int main()
{
    ifstream f("date.in");
    ofstream g("date.out");
    int a,b,s;
    f>>a>>b;
    s=a+b;
    g<<s;
    f.close();
    g.close();

}