y1 = list(map(int, input().split())) y2 = list(map(int, input().split())) def get_rmse(y1, y2): mse = get_mse(y1, y2) if mse: return math.sqrt(mse) else: return None print(get_rmse(y1,y2))
get_mse------>>>get_rmse