2774: PTK16 差集

Memory Limit:256 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

输入两个字符串a和b,计算在b中但不在a中不同字符的个数。 例如: a='ABCDE',b='BFG',在b中但不在a中的字符有F、G,个数是2。

Input

第一行一个字符串a(长度在100以内); 第二行一个字符串b(长度在100以内)。

Output

一个正整数,为在b中但不在a中的不同字符的个数。

Sample Input Copy

ABCDE
BFG

Sample Output Copy

2

HINT