← Home
For problem statement at 0-999/300-399/300-309/309/problemA.txt this is a correct solution, but verifier at 0-999/300-399/300-309/309/verifierA.go ends with case 1 failed: bad output: strconv.Atoi: parsing "No": invalid syntax
input:
568
exit status 1 can you fix the verifier? ```go
package main

import "fmt"

func main() {
	var a, b int
	fmt.Scan(&a, &b)
	if b == a+1 && a%3 != 0 {
		fmt.Println("Yes")
	} else {
		fmt.Println("No")
	}
}
```