注意整型和浮点型两个数据类型
#include<iostream>
#include<cstring>
using namespace std;
int main(){
double k, n = 0;
string a,b;
cin >> k >> a >> b;
for(int j = 0; j < a.size(); ++j)
if(a[j] == b[j])
++n;
if(n / a.size() >= k)
puts("yes");
else
puts("no");
return 0;
}