Cod sursa(job #1992927)
Utilizator | Data | 21 iunie 2017 21:30:55 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <fstream>
ifstream f("adunare.in");
ofstream g("adunare.out");
using namespace std;
int s,a,b;
int main()
{
f>>a;
cout<<endl;
f>>b;
g<<a+b;
return 0;
}