#include <iostream>
using namespace std;

int main()
{
  float value = 15.4;

  cout << value << endl;

  return 0;
}

