Define a class template called genericStack for storing any datatype in a static stack. Your class template must include aconstructor, a destructor, push, pop, peek, isFull, and isEmptyfunctions (no display function is required). Write a simple mainfunction in your program that demonstrates the class template witha stack of strings.