while True:
try:
a = int(input('a = '))
except:
pass
b = int(input('b = '))
print(a*b)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
while True:
try:
a = int(input('a = '))
except:
pass
while True:
try:
b = int(input('b = '))
except:
pass
print(a*b)