class SigrandAB{

public:

string contact;

string email;

uint32_t phone;

SigrandAB(string n, string e, uint32_t p){

contact = n;

email = e;

phone = p;

}

};


int Main(){

// Initialize company

SigrandAB owner("Martin", "martin@sigrand.se", 701308650);

return 0;

}