import sys readline=sys.stdin.readline D=int(readline()) ans_lst=list(str(D*108)) ans_lst=ans_lst[:-2]+["."]+ans_lst[-2:] print(*ans_lst,sep="")