fork download
  1. s=input()
  2. d=""
  3. for b in s:
  4. if 'A'<=b and b<='Z': d+=b
  5. if 'a'<=b and b<='z': d+=b
  6. print(d)
Success #stdin #stdout 0.07s 14188KB
stdin
1234f132f
stdout
ff