#include void run(void){ long long int d; scanf("%lld",&d); d*=108; if(d%100<10){ printf("%lld.0%lld\n",d/100,d%100); } else { printf("%lld.%lld\n",d/100,d%100); } return; } int main(void){ run(); return 0; }