fork download
  1. #include <iostream>
  2. using namespace std;
  3. int b = 24;
  4. int a = b - 5 + 7;
  5. int c = b - a;
  6.  
  7. int main() {
  8. if (a >= c) {
  9. cout << a - c + b * a - b;
  10. } else {
  11. cout << a;
  12. }
  13. return 0;
  14. }
Success #stdin #stdout 0.01s 5320KB
stdin
Standard input is empty
stdout
628