#include <iostream>
using namespace std;

int main() {
	char *ptr = "strrrrrrrr";
	char arr[] = "strrrrrrrr";
	
	cout << sizeof(ptr) << std::endl;
	cout << sizeof(arr) << std::endl;
	// your code goes here
	return 0;
}