
#include <stdio.h>

int main(int argc, char *argv[])
{
	int i;

	i = atoi(argv[1]);
	
	printf("%d\n", i);
}

