Cod sursa(job #2301220)
| Utilizator | Data | 12 decembrie 2018 19:17:31 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp-64 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.15 kb |
#include <fstream>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
long x,y;
int main()
{
fin>>x>>y;
fout<<x+y;
}