Cod sursa(job #1433921)

Utilizator andrei_xdsParasca Andrei andrei_xds Data 10 mai 2015 10:50:21
Problema A+B Scor 100
Compilator cpp Status done
Runda preitmarathon2015 Marime 0.17 kb
using namespace std;
#include <fstream>
ifstream f("adunare.in");
ofstream g("adunare.out");
int main()
{
    int a,b;
    f>>a>>b;
    g<<a+b;
    return 0;
}