Cod sursa(job #895990)

Utilizator ArynorBoghean Adrian Arynor Data 27 februarie 2013 13:22:27
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.23 kb
#include <iostream>
#include <fstream>

using namespace std;

ifstream fin("adunare.in");
ofstream fout("adunare.out");

int main()
{
    long long a,b;
    long long s;
    fin>>a;
    fin>>b;
    s=a+b;
    fout<<s;

}