#include<stdio.h> int main() { int a = 1; int b = 2; int c = 3; scanf("%d %d %d",&a,&b,&c); printf("%d",b); return 0; }