Cod sursa(job #2355496)
| Utilizator | Data | 26 februarie 2019 09:25:53 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp-64 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.2 kb |
#include <iostream>
using namespace std;
int main()
{
ifstream fin("adunare.in");
ofstream fout("adunare.out");
short int x, y;
fin>>x>>y;
fout<<x+y;
return 0;
}
