#include <stdio.h>

int main(void){
  printf("%s\n", "aaa\nbbb");
  printf("%s\n", "aaa\\nbbb");
  printf("%s\n", "aaa\"bbb");

  return 0;
}

