← Home
For problem statement at 0-999/200-299/220-229/221/problemA.txt this is a correct solution, but verifier at 0-999/200-299/220-229/221/verifierA.go ends with All 100 tests passed can you fix the verifier? package main

import "fmt"

func main() {
	var n int
	fmt.Scan(&n)
	fmt.Print(n)
	for i := 1; i < n; i++ {
		fmt.Print(" ", i)
	}
	fmt.Println()
}