思路:

要理解等差数列之间的关系

int main(void)
{
    int a=0,b=0,c=0;
    scanf("%d%d",&a,&b);
    c=b+(b-a);
    printf("%d",c);
    return 0; 
}