#include<stdio.h>
int main(){
    unsigned long num;
    scanf("%u",&num);
    printf("%d",num);
    return 0;
}