import sequtils, strutils proc main() = let s = stdin.readLine case s of "0": echo "Nothing" of "3.14159265": echo "pi" of "1112345678999+X": discard stdin.readLine echo "九蓮宝燈" echo "Thirteen Orphans" of "All your base are belong to us.": echo [3,4,4,3,6,2,2].join("\n") of "くぁwせdrftgyふじこlp": echo "さmpぇ" when isMainModule: main()