import sequtils import strutils import strformat let num_str: string = stdin.readLine() let num_list: seq[string] = map(toSeq(num_str.items), proc(x: char): string = $x) if "4" in num_list and "6" in num_list: echo("Beautiful") else: echo("...")