#include <iostream>
#include <string>
using std::string;
using std::cout;

/*What line of code would you write in main() that will create an Array of 7 ints?
*/

template<int N, typename T>
class Array {
	int m_Array[N];
public:
	int getSize() const { return N; }
};
int main() {
	Array<7, char> seven;
}