fork download
  1. print(''.join(ch.lower() if ch.isupper() else ch.upper() if ch.islower() else '#' if ch.isnumeric() else ch for ch in input()))
Success #stdin #stdout 0.02s 9288KB
stdin
helloWORLD1234!!!
stdout
HELLOworld####!!!