Cod sursa(job #1651109)

Utilizator henzalVrabie Alin henzal Data 12 martie 2016 11:11:45
Problema A+B Scor 0
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;
    <<a+b;
    f.close();
    o.close();
    return 0;
}