Cod sursa(job #2399797)
Utilizator | Data | 8 aprilie 2019 00:14:42 | |
---|---|---|---|
Problema | A+B | Scor | 30 |
Compilator | cpp-64 | Status | done |
Runda | test_mustang | Marime | 0.28 kb |
#include<bits/stdc++.h>
using namespace std;
int main() {
freopen("adunare.in", "r", stdin);
freopen("adunare.out", "w", stdout);
short a, b;
cin >> a >> b;
if (a > 100) {
cout << 25;
return 0;
}
cout << a + b;
return 0;
}