Cod sursa(job #2409228)
Utilizator | Data | 18 aprilie 2019 20:02:45 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | teme_upb | Marime | 0.2 kb |
#include<fstream>
#include<iostream>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main(){
int a,b;
cin>>a;
cin>>b;
cout<<a+b;
}