fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int k = 5;
  6. k *= 2.25;
  7. cout << k << endl;
  8.  
  9. k = 5;
  10. k = (k<<1) + (k/4);
  11. cout << k << endl;
  12.  
  13. return 0;
  14. }
Success #stdin #stdout 0s 3296KB
stdin
Standard input is empty
stdout
11
11