Cod sursa(job #2930161)
| Utilizator | Data | 27 octombrie 2022 16:56:19 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp-64 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.21 kb |
#include <iostream>
#include <fstream>
using namespace std;
int A,B;
int main()
{
ifstream fin("adunare.in");
ofstream fout("adunare.out");
fin>>A>>B;
fout<<A+B;
return 0;
}
