← Back to List

30189번: 경우의 수의 합 ↗

Solutions

Python 3
58 B | 58 chars
a, b = map(int, input().split())

print((a + 1) * (b + 1))