#include<iostream>

template<char a[]>
struct T {
  void output() { std::cout << a; }
};

char str[] = "Hello";

int main() {
    
    T<str> t;
    t.output();
    
    return 0;
}