#include <stdio.h>

static const int N = 1000;
static const int V = N? 1:0;

int main(){
    printf("%d",V);
	return 0;
}