#include<bits/stdc++.h>
using namespace std;

int n;
char s[100000]; 

int main(){
	scanf("%d", &n);
	scanf("%s", s);
	printf("1");
	return 0;
}