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

int main() {
	double value;
	cin >> value;
    double hundredth = 0.01;
    cout << fixed << setprecision(15) << (value / hundredth) << endl;
	return 0;
}