fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main() {
  5. // your code goes here
  6. cout<<ceil(9/4);
  7. float ans=9/4;
  8. cout<<ceil(ans);
  9. return 0;
  10. }
Success #stdin #stdout 0.01s 5360KB
stdin
Standard input is empty
stdout
22