← Home
For problem statement at 1000-1999/1000-1099/1080-1089/1089/problemB.txt this is a correct solution, but verifier at 1000-1999/1000-1099/1080-1089/1089/verifierB.go ends with All 100 cases passed can you fix the verifier? package main

import "fmt"

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