package main import . "fmt" func main() { var s string Scan(&s) switch s{ case "E": s="F" case "B": s="C" default: s+="#" } Println(s) }