#include <iostream>
using namespace std;
int main(){
    double in,m;
    cin>>in;
    m=in*0.025400;
    cout<<setprecision(6)<<m;
}