Cod sursa(job #2554603)

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

using namespace std;

int main()
{
ifstream f ("date.in");
ofstream g ("date.out");
    int a,b;
    f>>a>>b;
    g<<a+b;
    return 0;
}