Cod sursa(job #1418828)

Utilizator StarGold2Emanuel Nrx StarGold2 Data 14 aprilie 2015 09:22:32
Problema A+B Scor 100
Compilator cpp Status done
Runda pre_oni_gim2015 Marime 0.19 kb
#include <fstream>
using namespace std;

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

int a, b;

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