impor paket dasar pergi

package main

import ( //Some important packages to import ;)
  "fmt"
  mth "math" //mth given as alias to "math" before
  "time"
  "os"
  "bufio"
  "strings"
  "strconv"
)
Armandres