#include <iostream>
using namespace std;

int main() {
	// your code goes here
	std::string s("hello");  
  	bool r = s[s.size()] == '\0'; // True
  	bool ptr = &s[0] == s.c_str(); // Tru
	return 0;
}