Development C++

#include 
using namespace std;
int main()
{
  int i;
  float f;
  f = 199.22;
  i = static_cast (f);
  cout << i;
  return 0;
}