Cod sursa(job #2302097)

Utilizator mednyDaniel Constantin medny Data 13 decembrie 2018 19:55:31
Problema A+B Scor 100
Compilator cpp-32 Status done
Runda Arhiva de probleme Marime 0.17 kb
#include<fstream>

using namespace std;

ifstream f("adunare.in");

ofstream g("adunare.out");

int main(){

int a,b,s=0;
f>>a>>b;
s=a+b;
g<<s;

return 0;
}