a = int(input('Input the first side: '))
b = int(input('Input the second side: '))
s = a*b;
print('square is equal to: {0}'.format(s))
Поделитесь своими знаниями, ответьте на вопрос:
Попробуйте написать программу на языке Phyton. Найти площадь прямоугольника со сторонами a, b. Если не можете на Пайтоне, то можно алгоритм или блок схему
a = int(input('Input the first side: '))
b = int(input('Input the second side: '))
s = a*b;
print('square is equal to: {0}'.format(s))