#include <stdio.h> #include <stdint.h> #include <inttypes.h> int main(void) { int64_t a; scanf( "%"SCNd64, &a ); printf( "%"PRId64, a ); return 0; }