Cod sursa(job #2331656)

Utilizator AlexandruTudorTudor George Alexandru AlexandruTudor Data 29 ianuarie 2019 19:33:04
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.22 kb
#include <iostream>
#include <fstream>

using namespace std;

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