Score : $200$ points
Given are strings $S$ and $T$. Consider changing $S$ to $T$ by repeating the operation below. Find the minimum number of operations required to do so.
Operation: Choose one character of $S$ and replace it with a different character.
Input is given from Standard Input in the following format:
$S$ $T$
Print the answer.
cupofcoffee cupofhottea
4
We can achieve the objective in four operations, such as the following:
c with h.f with t.f with t.e with a.abcde bcdea
5
apple apple
0
No operations may be needed to achieve the objective.