Cod sursa(job #2471032)

Utilizator dvp123Pescariu David dvp123 Data 10 octombrie 2019 08:46:45
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.2 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;
}