#include<stdio.h>
int main ()
{
    int a;
    char c;
    scanf("%c",&c);
    printf("%d");
    scanf("%d",&a);
    
return 0;
}