#include <iostream>
using namespace std;

int main() {
char *str = "hi";

delete [] str;
return 0;
}