package main import "fmt" func main() { var d int _, _ = fmt.Scan(&d) a, b := (d*108)/100, (d*8)%100 fmt.Printf("%d.%d\n", a, b) }