BC40 牛牛的等差数列

思路:

step1:输入两个数;求出公差;将最后一个数加上公差并打印;

代码如下:

a,b = list(map(int,input().split()))
n = b - a 
print(b + n)