#include <iostream>
using namespace std;

int main() {
	const char myStr1[] = "hello";
	const char* myStr2 = "hello";
	
	cout << sizeof(myStr1) << "," << sizeof(myStr2) << endl;
	return 0;
}