Cod sursa(job #1231650)

Utilizator silvik4uSilviu Troscot silvik4u Data 21 septembrie 2014 11:53:26
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
#include <fstream>
#include <iostream>
using namespace std;
int main()
{int s,a,b;
ifstream f("suma.in");
ofstream g("suma.out");
f>>a;
f>>b;
g<<a+b;
return 0;
}