执行以下程序,输出的结果是( )。
height = {“小蓝”:80, “小青”:100, “小圃”:70}
height[“小青”]=70
print(sum(height.values()))
220
210
250
70