← Back to List

8370번: Plane ↗

Solutions

Python 3
49 B | 49 chars
a,b,c,d = map(int,input().split())
print(a*b+c*d)