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

import "fmt"

func main() {
	var n int
	fmt.Scan(&n)
	sum := 0
	for i := 0; i < n; i++ {
		var x int
		fmt.Scan(&x)
		sum += x
	}
	fmt.Println(sum)
}
```