#include <iostream>
#include "header.h"
using namespace std;

int main(){
	Worker myWorker(1,"Stef");
	myWorker.displayInfo();

	return 0;
}



