#include<iostream>
usingname space std;
int main()
{
    float a,b;
    cin>>a;
    b=a*1/100;
    cout<<b;
    return 0;
}