#include <stdio.h>

int class(a, b, c)
int a;
double b;
char c;
{
	return 2;
}

int main(void) {
	// your code goes here
	return 0;
}
