Cod sursa(job #2176677)

Utilizator WorryGloryWorry GLory WorryGlory Data 17 martie 2018 21:58:29
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.2 kb
#include<iostream>
#include<fstream>
using namespace std;

int main(){
    ifstream i("adunare.in.txt");
    ofstream o("adunare.out.txt");
    long int a,b;

i>>a>>b;
o<< a+b;

return 0;
}