Cod sursa(job #1692815)

Utilizator fulger13Pomirleanu Sebastian fulger13 Data 21 aprilie 2016 18:31:08
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.19 kb
#include <iostream>
#include <fstream>

using namespace std;

ifstream q("adunare.in");
ofstream w("adunare.out");

int main()
{int a,b;
    q>>a>>b;
    w<<a+b;

    return 0;
}