Cod sursa(job #2188677)

Utilizator HoodieMonika Bokotey Hoodie Data 27 martie 2018 12:36:26
Problema A+B Scor 0
Compilator cpp 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;
}