Cod sursa(job #1050151)

Utilizator pepsiM4A1Ozturk Arif pepsiM4A1 Data 8 decembrie 2013 11:45:48
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include <fstream>
using namespace std;
int main()
{
    ifstream fin ("adunare.in");
    ofstream fout ("adunare.out");
    long long a,b;
    fin>>a>>b;
    fout<<a+b;
}