/* Helloプログラム */

#include <stdio.h>
#include <stdbool.h>
 
main()
{
	int absent;
	
	(absent >= 3);
	
	int test;
	
	(test <= 60);
	
	printf("%d\n", absent , test);
}