Computer Science, asked by DivyanshBhalla, 5 months ago

1. Rewrite the following code of statements after correcting the syntactical errors
1)
a=integer(input('First number"))
b= 10
for i in range(a:b)
PRINT(a*b)
if (a>b)
print (a)
2) i=10
while (i=>5):
print (I)
i=i+1:​

Answers

Answered by kevinmanojkm
26

Answer:

Explanation:

  1. a = int(input("First number"))

         b = 10

         for i in range (a,b):

              print(a*b)

         if (a>b):

         print(a)

2.    i= 10

      while (i => 5):

            i=i+1

            print (i)

good luck

Similar questions