#include <iostream>
#include <iomanip>
using namespace std;

int main()
{
   double y = .59;
   int x = (int)(y * 100.0);
   cout << setprecision(50);
   cout << y << endl;
   cout << y * 100.0 << endl;
   cout << x << endl;
   return 0;
}
