#include <iostream>
void SomeFunc(int n1, short n2)
{
    std::cout << n1 << ' ' << n2 << '\n';
}
int main()
{
    typedef void (*visf)(int, short);
    (visf(SomeFunc))(3, 2);
}
