package main
import (
"fmt"
"math/rand"
)
func main() {
fmt.Println("Hello World")
fmt.Println("My favorite number is", rand.Intn(100))
}