Cod sursa(job #3343015)
| Utilizator | Data | 26 februarie 2026 13:05:15 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp-64 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.2 kb |
#include <fstream>
using namespace std;
ifstream fin("AB.in");
ofstream fout("AB.out");
int main()
{
int A,B,suma;
fin>>A;
fin>>B;
suma=A+B;
fout<<suma;
return 0;
}
