Cod sursa(job #2252357)
| Utilizator | Data | 2 octombrie 2018 18:42:11 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | marpmi_2018 | Marime | 0.17 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream f("adunere.in");
ofstream g("adunere.out");
int main()
{
int a,b;
f>>a>>b;
g<<a+b;
}
