// echostrip.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"


int main(int argc, char* argv[])
{
	if (argc != 2)
		return 1;
	char* pch = argv[1];
	puts((const char*)pch);
	return 0;
}

