#include <stdio.h> int main(void) { int a, b, c; printf("请输入3个正整数,3个数中间以空格分开\n"); scanf("%d %d %d", &a, &b, &c); printf("%d", b); return 0; }