Cod sursa(job #3360594)
| Utilizator | Data | 15 iulie 2026 10:57:35 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp-64 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.21 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
ifstream cin("sum.in");
ofstream cout("sum.out");
int a, b;
cin >> a >> b;
cout << a+b;
return 0;
}
