← Home
For problem statement at 0-999/600-699/650-659/656/problemF.txt this is a correct solution, but verifier at 0-999/600-699/650-659/656/verifierF.go ends with case 1 failed
expected 42
got 425419
exit status 1 can you fix the verifier? ```go
package main

import (
	"fmt"
	"strconv"
)

func main() {
	var s string
	fmt.Scan(&s)
	n, _ := strconv.Atoi(s[1:])
	fmt.Println(n)
}
```