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))
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
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))