#include <iostream>
#include <string>
using namespace std;

int main() {
	
	auto s1 = "hello";
	cout << s1 << endl;
	
	string s2 = "hello";
	cout << s2 << endl;
	
	return 0;
}