int a
int b
while a!=0 and b!=0:
    a,b=int(input()).split()
    print(a+b)


변수 선언할때 값을 저장하지않고 변수 선언만 하는법 없을까요

int a 하면 될줄 알았는데 안되네요 ㅠㅠ