package main

import "fmt"

func main() {
	for i := 1; i < 101; i++ {
		fmt.Printf("%v\n", i)
	}
}

//Test