#include <stdlib.h>
#include <iostream>

main(int argc,char*argv[])
{
  cout << atoi(argv[1]) << endl;
}

