Cod sursa(job #2094361)

Utilizator Steve_ITStefan Ursache Steve_IT Data 25 decembrie 2017 19:02:11
Problema A+B Scor 100
Compilator cpp Status done
Runda Lista lui wefgef Marime 0.16 kb
#include <fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int a, b;
int main()
{
    f>>a>>b;
    g<<a+b;
    return 0;
}