#include<stdio.h>
int main()
{
int a,b;
scanf("%c" , &a);
scanf("%c ", &b);
printf("Ivalid input%c",a);
printf("Invalid input%c",b);
}