fork download
  1. i = input("입력 : ").split()
  2.  
  3. for j in i:
  4. k = j.replace('E', 'C')
  5. print(k)
Success #stdin #stdout 0.02s 9212KB
stdin
HELLO WORLD
stdout
입력 : HCLLO
WORLD