Cod sursa(job #1163067)
| Utilizator | Data | 1 aprilie 2014 09:54:31 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <fstream>
using namespace std;
ifstream fin ("adunare.in");
ofstream fout ("adunare.out");
long a ,b;
int main()
{
fin>>a;
fin>>b;
cout << a+b;
return 0;
}
