#include <iostream>
#include <string>
using namespace std;

int main() {
	// your code goes here
	string adress;
	string command = "wget ";
	std::cin >> adress;
	string exec = command + adress;
	cout << exec.c_str();
	return 0;
}