Here is the code example:
...
func main() {
var count int
fmt.Scan(&count)
if count > 5 {
count := 3
count += 1
fmt.Println(count)
}
fmt.Println(count)
}Which numbers will be printed if the input value is 15?