var A = 3var B = 5var C = 7if C >= A && C >= B { fmt.Println("nothing is larger than C")}if !(A >= B || A >= C) { fmt.Println("A is the smallest")}