package main import "fmt" func main() { var n int fmt.Scanln(&n) var s string fmt.Scanln(&s) s = s[:n-1] s = s[1:] fmt.Println(s) }