Cod sursa(job #1258235)

Utilizator SlaZzeRMaftei Ioan Alexandru SlaZzeR Data 8 noiembrie 2014 17:09:40
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include <iostream>
#include <fstream>
using namespace std;

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

int main()
{   int a,b;
fin>>a>>b;
fout<<a+b;
    return 0;
}