- C24zhouyanchen's blog
print
- @ 2024-10-11 21:35:55
#include <iostream>
char *end;
namespace std
{
template <typename i>
void print (const i& a)
{
cout << a << endl;
}
template <typename i>
void print (const i& a,char *end)
{
cout << a << end;
}
}