Cod sursa(job #2206041)
| Utilizator | Data | 20 mai 2018 22:00:59 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.14 kb |
#include <fstream>
std::ifstream f("adunare.in");
std::ofstream g("adunare.out");
long long a,b;
int main()
{
f>>a>>b;
g<<a+b;
}
