#include <iostream>
using namespace std;

int main() {
	char s[] = "hello, world!";
	std::cout<<sizeof(s);
	return 0;
}