6 lines
84 B
Python
6 lines
84 B
Python
into = input()
|
|
a, i = into.split(' ')
|
|
|
|
bribe = int(a)*(int(i) - 1) + 1
|
|
print(bribe)
|