func e(x int) string {
	if x == 0 {
		return ""
	} else {
		return e(x >> 1) + string(x & 1)
	}
}