#include <iostream>
#include <string>
using namespace std;
int main() {
string s = "hello world";
// display hello world followed by an end of line
cout << s << endl;
// display hello world followed by ! and end of line
cout << s << "!" << endl;
return 0;
}