#include <iostream>
using namespace std;
int main() {
char myStr[] = "Hello World!";
cout.write(myStr, 5);
return 0;
}