#include <cstdio>

#include "user.h"

// output data for a single user
string User::Output ()
{
   char Out[1024];

   // format data into a single line and return it
   sprintf (Out, "%-40s %-20s", Name.c_str (), SSN.c_str ());

   return Out;
}