#include <stdio.h>

int twice(void){
	return 1;
}
int main(void) {
	int n;
	n=twice();
	printf("%d\n",n);
	return 0;
}
