package main import "fmt" func main() { fmt.Println('w' - 'a') // 119 - 97 fmt.Println('o' - 'a') // 111 - 97 }