#include <string.h>
#include <stdio.h>
#define TOKS 7
int main(int argc,char *pArgv[])
{
  const char *ptoken[TOKS] = {"-rp","-ip","-dw","-tp","-lp","-f","-b"},*pPar[TOKS]={0};
  for(int i(1); i < argc-1; i++)
   for(int n(0); n < TOKS; n++)
      if(!pPar[n]) pPar[n] = !strcmp(ptoken[n],pArgv[i])?pArgv[(i+=1)]:0;
 
  for(int n(0); n < TOKS; n++)
   printf("%s=%s\r\n",ptoken[n],pPar[n]);
 
  return 0;
}