Cod sursa(job #2346078)

Utilizator gazdac_alex@yahoo.comGazdac Alexandru Eugen [email protected] Data 17 februarie 2019 01:52:01
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.16 kb
#include <fstream>
using namespace std;
ifstream in("adunare.in");
ofstream out("adunare.out");


int main(){
int a,b;
in >> a >> b;
out <<a+b;
return 0;}