#include #include #include #include #include int main(void) { string s = get_string("s: "); string t = get_string("t: "); if (s==t) { printf("Same\n"); } else { printf("Different\n"); } }