#include <stdio.h>
int main() {
char txt[] = "The character \\ is called backslash.";
printf("%s", txt);
return 0;
}