BC38 牛牛的并联电路

思路:

step1:输入r1、r2;计算出r总;打印r总

代码如下:

r1,r2 = list(map(int,input().split()))
r = (1/(1/r1 + 1/r2))
print(r)