// No.552 十分簡単な星1の問題 package main import ( "fmt" ) func main() { var s string fmt.Scan(&s) if s != "0" { s += "0" } fmt.Println(s) }