Cod sursa(job #1651110)

Utilizator henzalVrabie Alin henzal Data 12 martie 2016 11:12:33
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.23 kb
#include <iostream>
#include <fstream>
using namespace std;

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