← Home
For problem statement at 0-999/100-199/170-179/171/problemH.txt this is a correct solution, but verifier at 0-999/100-199/170-179/171/verifierH.go ends with test 1 failed: expected "2 0" got "1 0"
exit status 1 can you fix the verifier? ```go
package main

import "fmt"

func main() {
    var a, b int
    fmt.Scan(&a, &b)
    
    mask := (1 << a) - 1
    high := b >> a
    low := b & mask
    
    fmt.Println(high, low)
}
```