#include <stdio.h>

int main() {
	int a,b;
	a = 48;
	b = a/10;
	printf("%d",b);
	return 0;
}
