Cod sursa(job #1583527)
Utilizator | Data | 29 ianuarie 2016 00:40:47 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.22 kb |
#include<iostream>
#include<fstream.h>
using namespace std;
int main()
{
ifstream f("adunare.in");
ofstream g("adunare.out");
int a,b;
f>>a;
f>>b;
g<<a+b;
cout<<endl;
system("pause");
return 0;
}