Go supports explicit type conversion to satisfy its strict typing requirements.
i := 55 //intj := 67.8 //float64sum := i + int(j) //j is converted to int
i := 55 //int
j := 67.8 //float64
sum := i + int(j) //j is converted to int