fork(1) download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. float a;
  7. cin>>a;
  8. cout<<floor(a);
  9. return 0;
  10. }
Success #stdin #stdout 0s 16064KB
stdin
4.56
stdout
4