C语言
int main() { int Y,M,B; //Y最小,M中间,B最大 scanf(“%d”,&Y); scanf(“%d”,&M); B=(M-Y)+M; printf(“%d”,B); return 0; }