// 10.8.7.cpp : This file contains the 'main' function. Program execution begins and ends there. // #include #include "header.h" using namespace std; int main() { char s1[50]{}, s2[50]{}; int n; GetInput(s1, s2, n); if (Compare(s1, s2, n)) { cout << "Same"; } else { cout << "Different"; } }