package main
import "fmt"
import "math"

func main(){
	var n float64 = 0.1000065;
	
	fmt.Println(math.Floor(n * 1e6) / 1e6);
}