package main import ( "strconv" ) func Itoa(v int) string { return strconv.Itoa(v) } func main() { }