#include<stdio.h>
int main(){
    int N;
    scanf("%d",&N);
    if(N<0){
        printf("Invalid input");
        break;
    }
}