#include <bits/stdc++.h>
template <typename Type>
void print(Type x) {
std::cout << x << ", 233333" << std::endl;
}
template <typename Type, typename... Targs>
void print(Type x, Targs... args) {
std::cout << x << std::endl;
print(args...);
}
int main() {
print('1', 1.5, "Hello World");
return 0;
}