Cod sursa(job #2074848)
| Utilizator | Data | 25 noiembrie 2017 09:02:01 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.2 kb |
#include <fstream>
#include <iostream>
using namespace std;
long long a,b;
int main()
{
ifstream f("adunare.in");
ofstream g("adunare.out");
f>>a;
f>>b;
g<<a+b;
return 0;
}
