Программирования ( написать программу для следующей задачи ) s=(a+5)*b
#Python 3.6.4 a = int(input()) b = int(input()) s = (a + 5) * b print(s)