package main
import "fmt"
 
func main() {
  a := 1.2
  b := 1.0
  c := 0.2
 
  fmt.Println(a - b == c)
  fmt.Print(a * 10 - b * 10 == c * 10)
}