← Home
```go
package main

import (
	"fmt"
	"strconv"
)

func main() {
	var s string
	fmt.Scan(&s)
	n, _ := strconv.Atoi(s[1:])
	fmt.Println(n)
}
```