#include #include // Library for I/O commands #include using namespace std; struct EmployeeData { long ssn; // Social Security # int id; // School identification number }; struct EmployeeSalary { double annual_salary; double net_pay; EmployeeData em_data; }; int mainer () { return 0; }