import sets let s: string = stdin.readline t: HashSet[char] = toHashSet(s) var ans: string if s.len == t.len: ans = "YES" else: ans = "NO" echo ans