Cod sursa(job #1212532)

Utilizator AnesthesicChereches Sergiu Alexandru Anesthesic Data 25 iulie 2014 02:05:55
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.23 kb
#include <iostream>
#include <fstream>

using namespace std;

ifstream in("suma.in");
ofstream out("suma.out");
int a, b;

int main()
{
    in>>a>>b;
    out<<a + b;
    in.close();
    out.close();
    return 0;

}