package main

import (
"fmt"
"runtime"
)

func main() {
fmt.Println("=============")
fmt.Println(runtime.GOOS)
fmt.Println(runtime.GOARCH)
}