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

using namespace std;

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

       string bob = argv[1];
       bob = bob.substr(4, bob.length());
       bob = "outlookfeed" + bob;
       string entirecommand = "start " + bob;

       system(entirecommand.c_str());       

 return 0;   
}