Cod sursa(job #2188328)
| Utilizator | Data | 27 martie 2018 09:04:09 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | bpc9 | Marime | 0.21 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
short a,b;
ifstream fin("date.in");
ofstream fout("date.out");
fin >> a >> b;
fout << a+b;
return 0;
}
