Cod sursa(job #2516846)
Utilizator | Data | 2 ianuarie 2020 14:53:59 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Lista lui wefgef | Marime | 0.25 kb |
/// Crave your name into those shining stars
#include <cstdio>
using namespace std;
int main() {
freopen ("adunare.in", "r", stdin);
freopen ("adunare.out", "w", stdout);
int a, b;
scanf("%d %d", &a, &b);
printf("%d\n", a + b);
}