using System; using System.Collections.Generic; using System.Collections; using System.Collections.Specialized; using System.Linq; using System.Text; using System.IO; using System.Reflection; using static System.Math; using System.Numerics; static class Program{ const int mod=(int)1e9+7; const double eps=1e-11; static void Main(){ Sc sc=new Sc(); var s=sc.Ia; Console.WriteLine("{0}",Levenshtein(sc.S,sc.S)); } static int Levenshtein(string a,string b){ a="-"+a;b="-"+b; int[][] dp=new int[a.Length+1][]; dp[0]=Enumerable.Range(0,b.Length+1).ToArray(); for(int i=1;i(int n,Func f){var a=new T[n];for(int i=0;i(int n,Func f){var a=new T[n];for(int i=0;i(int n,Func f){var a=new T[n];for(int i=0;i(int n,Func f){var a=new T[n];for(int i=0;i