从键盘输入爸爸年龄dad,儿子年龄son,计算父子的年龄差距diff并输出
dad = int(input("父亲年龄:")) son = int(input("孩子年龄:")) diff = dad - son print(diff)