Program Python Rekursif untuk Mencetak Nomor Dari N ke 1
# Read the input
n = int(input())
def rec(n):
if n==0:
print(0)
else:
print(-n)
rec(n-1)
print(n)
rec(n)
Victorious Vendace