Cod sursa(job #575747)

Utilizator stef93Stefan Gilca stef93 Data 8 aprilie 2011 18:20:51
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.19 kb
#include <fstream>
using namespace std;

int main()
{
    long a,b;
    ifstream in("adunare.in");
    in>>a>>b;
    in.close();
    ofstream("adunare.out")<<a+b;
    return 0;
}