package calculations

func Summator(x float32, y float32) float32 {
	z := x + y
	return z
}