Cod sursa(job #2176689)

Utilizator WorryGloryWorry GLory WorryGlory Data 17 martie 2018 22:06:15
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.19 kb
#include<iostream>
#include<fstream>
using namespace std;

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

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

return 0;
}