Hacker News new | ask | show | jobs
by btbuilder 643 days ago

  input_string = "VMS"
  output_string = ''.join([chr(ord(char) + 1) for char in input_string])
  print(output_string)