Cod sursa(job #1401454)

Utilizator VladReloadVlad Reload VladReload Data 25 martie 2015 21:46:29
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.22 kb
#include <iostream>
#include <fstream>
using namespace std;
int a,b;
int main()
{
    ifstream f("adunare.in");
    f>>a;
    f>>b;
    f.close();
    ofstream g("adunare.out");
    g <<a+b;
    return 0;
}