#include <iostream>
using namespace std;

void my_print(char *a, string &b)
{
	b = a;
	cout << b.size() << endl;
	cout << b.length() << endl;
}

int main() {
	// your code goes here
	string b;
	
	char a[10] = "HELLO\n";
	b = a;
	
	cout << sizeof(a) << endl;
	cout << b.size() << endl;
	return 0;
}