>>108779783
#include <iostream>
#include <utility>
using namespace std;
template <char... C> void meow(integer_sequence<char, C...>) {
(cout << ... << C);
}
int main() {
meow(integer_sequence<char, 'H', 'e', 'l', 'l', 'o', ',', ' ', 'w', 'o', 'r', 'l', 'd', '!', '\n'>());
}