#include <stdio.h>

void fn(i, j)
int i;
char j;
{
	printf("i = %d, j = %c\n", i, j);
}

int main(void) {
	fn(3, 'a');
	return 0;
}
