Adds GST to this number.
Example:
int price = 100; double result = price.addGST(10); // 110.0
double addGST(double percent) => this * (1 + percent / 100);