Math, asked by dinkarmudiraj8025, 9 months ago

Write a code to find out all positive whole numbers x and y satisfying the equation x*y = 130

Answers

Answered by sheshachouthani
5

Answer:

rkgzf,hx

, c,

cz

.vxgn

xn

GX

jxyddisjtsjt

X

s

Answered by hscharpreet
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