← Home
For problem statement at 0-999/100-199/180-189/188/problemB.txt this is a correct solution, but verifier at 0-999/100-199/180-189/188/verifierB.go ends with All tests passed can you fix the verifier? ```go
package main

import "fmt"

func main() {
	var a, b int
	fmt.Scan(&a, &b)

	rev := 0
	for b > 0 {
		rev = rev*10 + b%10
		b /= 10
	}

	fmt.Println(a + rev)
}
```