728x90
반응형

단순 수학 문제이다.

while 1:
    n = int(input())
    if n == 0:
        break
    print(f"{n} => {n**2 - (n-1)}")
728x90
반응형

+ Recent posts