#include<stdio.h>
 
void test_it(var)
{
printf("%d\n",var);
}
 
int main()
{
test_it(67);
return 0;
}