// C++转义序列或字符串
#include <iostream>

using namespace std;

int main() {
   cout << "Hello\tWorld\n\n";
   return 0;
}