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