#include <stdio.h>

int main() {
  char one[100], two[]="Hello";

  one = two;
  return 0;
}
