fork(1) download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. ios_base::sync_with_stdio(false);
  7. cin.tie(NULL);
  8. float a;
  9. cin>>a;
  10. cout<<ceil(a);
  11. return 0;
  12. }
Success #stdin #stdout 0s 16064KB
stdin
5.00
stdout
5