📅  最后修改于: 2022-03-11 14:46:49.997000             🧑  作者: Mango
#!/usr/bin/env python
# Compute line between two points.
x1, y1 = 2, 3 # point one
x2, y2 = 6, 8 # point two
sum = (x1 * y2) + (x2 * y1)
print(sum)
# output
# 34