#include <iostream.h>

int main()
{
  float abs(float);
  float i;
  cout << "Enter a number: ";

  cin >> i;

  cout << abs(i*20.) << endl;
}


