#include<stdio.h>
struct P{char n[100];int a;float h;}p;
int main(){
    fgets(p.n,100,stdin);
    scanf("%d%f",&p.a,&p.h);
    if(p.a<0)puts("Invalid input");
    else printf()
}