7 lines
166 B
Python
7 lines
166 B
Python
import math
|
|
|
|
a=int(input('Кол-во детей'))
|
|
b=int(input('Кол-во вожатых'))
|
|
|
|
c=math.ceil((a+b)/20)
|
|
print('Понабиться',c,'автобус') |