Cod sursa(job #2554628)

Utilizator stefan333Alexandru David stefan333 Data 23 februarie 2020 10:50:23
Problema A+B Scor 0
Compilator cpp-32 Status done
Runda Arhiva de probleme Marime 0.19 kb
#include <iostream>
#include <fstream>

using namespace std;
ifstream f ("date.in");
ofstream g ("date.out");
int main()
{

    int a,b;
    f>>a>>b;
    g<<a+b;
    return 0;
}