static int add();
int main(){
    printf("%d",add());
    return 0;
}
 
static int add(){
    return 1+1;
}