Cod sursa(job #1580743)

Utilizator RaulTofan9Raul Tofan RaulTofan9 Data 26 ianuarie 2016 08:21:37
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.19 kb
#include <fstream>
using namespace std;
ifstream f("a+b.in");
ofstream g("a+b.out");
int s=0, a, b;
int main()
{   f>>a;
    f>>b;
    s=a+b;
    g<<s;
    g.close();
    return 0;
}