← Home
For problem statement at 0-999/300-399/320-329/327/problemB.txt this is a correct solution, but verifier at 0-999/300-399/320-329/327/verifierB.go ends with All tests passed can you fix the verifier? package main

import (
	"bufio"
	"fmt"
	"os"
)

func main() {
	var n int
	fmt.Scan(&n)

	out := bufio.NewWriter(os.Stdout)
	defer out.Flush()

	for i := 0; i < n; i++ {
		fmt.Fprintf(out, "%d ", 1000000+i)
	}
}