Create a function Brackets() that takes a string and checks that the brackets in the math expression are correct. The function should return true or false.
Brackets("(a*(b-c)..... )") ➞ true
Brackets(")(a-b-45/7*(a-34))") ➞ false
Brackets("sin(90...)+.............cos1)") ➞ falsetrue.