#pragma once
#include "UserInteraction.h"
int main() {
UserInteraction userInteraction;
userInteraction.execute();
system("pause");
return 0;
};