1. def abc(x):
  2. if x == 'a' :
  3. x = 'a'
  4. elif x == 'b':
  5. x = 'b'
  6. else: x = 'ab'
  7. return x
  8. print(abc('a'))