#include <stdio.h>

int main() {
    int arr[3]={0};
    for(int i=0;i<3;i++){
        scanf("%d",&arr[i]);
    }
    printf("%d",arr[1]);
}