← Home
For problem statement at 1000-1999/1900-1999/1980-1989/1985/problemA.txt this is a correct solution, but verifier at 1000-1999/1900-1999/1980-1989/1985/verifierA.go ends with All tests passed can you fix the verifier? ```go
package main

import "fmt"

func main() {
    var t int
    fmt.Scan(&t)
    for i := 0; i < t; i++ {
        var a, b string
        fmt.Scan(&a, &b)
        firstA := a[0]
        firstB := b[0]
        newA := string(firstB) + a[1:]
        newB := string(firstA) + b[1:]
        fmt.Println(newA, newB)
    }
}
```