#include <iostream> 

int main() 
{ 
  float f, g; 

  f = 1000.43; 
  g = 1000; 
  std::cout << f - g << std::endl; 
} 
