Check if two strings are same or not
Given two strings, the task is to check if these two strings are identical(same) or not. Examples: Input: s1 = "abc", s2 = "abc" Output: Yes Input: s1 = "", s2 = "" Output: Yes Input: s1 = "GeeksforGeeks", s2 = "Geeks" Output: No Using (==) in C++/Python/C#, equals in Java and === in JavaScript[GFGT