test
第0题
#include <bits/stdc++.h>
using namespace std;
void
p(int f(int))
{
cout<<f;
}
void
p(short n)
{
cout<<n;
}
int
main()
{
p(putchar);
p(0);
return 0;
}