#include <stdio.h>

int main() 
{
    double a=0.0;
    scanf("%lf",&a);
    int b=a;
    printf("%d",b%10);
    
    return 0;
}