n = int(input())
c = 0
while(c < n*2):
c+=2
print(c, end=" ")
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
n = int(input())
c = 0
while(c < n*2):
c+=2
print(c, end=" ")