def mystery():
  s = 'a'
  t = s.join(['br', 'c', 'd', 'br'])
  print(s + t + s)
mystery()