/* put in username, password, and salt as the third */
main (int argc,char **argv){
        printf ("%s:%s",argv[1],crypt(argv[2],argv[3]));
}

