Write a code to find out all positive whole numbers x and y satisfying the equation x*y = 130
Answers
Answered by
5
Answer:
rkgzf,hx
, c,
cz
.vxgn
xn
GX
jxyddisjtsjt
X
s
Answered by
8
Answer:
Python code is given below
Step-by-step explanation:
num = 130
for i in range(num + 1):
for j in range(num + 1):
if (i*j == num):
print(str(i) + ", " + str(j))
Similar questions