#include <stdio.h>

int main(void)
{
    short a=1, b=2;
    float c=3;
    f(a,b,c);
    return 0;
}

int f(long a,long b,long c)
{
    printf("%ld %ld %ld\n", a, b, c);
    return 0;
}