how did you configure the serial monitor (ie what does it send as a end of line?)
➜ make sure it's set to none (otherwise you'll have invisible characters in stringTwo and thus both don't match)
you could also call trim() on stringTwo before the compare, that would remove leading and trailing spaces, including the CR and LF if you have them
--
PS: as a curtesy for readers, make sure you indented the code in the IDE before copying, that's done by pressing ctrlT on a PC or cmdT on a Mac. you'll see that the code is much more readable when indented properly and { } pairs are aligned
Comparing "Strings" is a complex undertaking. The first step is to see if the length of the Strings are equal. If not, test is complete. Then next step is to compare byte to byte until either an unequal is found or the end of a string is found.
Part of debugging your code would be to print the length of each "String".