Given an integer N, write a program which reads N inputs and prints them. :- Use For Loop

PHOTO EMBED

Sun Nov 06 2022 03:22:30 GMT+0000 (Coordinated Universal Time)

Saved by @codewithakash

n_inputs = int(input())
for i in range(n_inputs):
  num = int(input())
  print(num)
content_copyCOPY

Explanation For example, if the given N is 3, then read the inputs in the next 3 lines and print them. If the given input integers in the next three lines are 8, 11, and 25, the output should be.