package main import ( "fmt" "strings" ) func main() { var s string str := "yukicoder" fmt.Scan(&s) fmt.Println(string(str[strings.Index(s, "?")])) }