package main import "fmt" func main() { var s string fmt.Scan(&s) if s == "0" { fmt.Println("0") } else { fmt.Println(s + "0") } }