Cod sursa(job #3356579)
| Utilizator | Data | 2 iunie 2026 16:00:11 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp-64 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.23 kb |
#include <stdio.h>
using namespace std;
int main()
{
freopen("input.txt", "rt", stdin);
freopen("output.txt", "wt", stdout);
int a, b;
scanf("%d%d", &a, &b);
printf("%d", a + b);
return 0;
}
