fork download
  1. import re
  2. input = "Self-contained underwater & breathing apparatus google.com"
  3. output = ''.join(re.findall(r"\b(\w)", input.upper()))
  4. print(output)
Success #stdin #stdout 0.02s 9388KB
stdin
Standard input is empty
stdout
SCUBAGC