n=int(input()) x=n*108 if x%100==0: print(x//100) elif x%10==0: print(x//100,'.',x//10%10,sep='') else: print(x//100,'.',x//10%10,x%10,sep='')