বৃহস্পতিবার, ১১ ফেব্রুয়ারী, ২০১৬

Compare two string equal or not solve by c++

#include<iostream>
using namespace std;
int main()
{
    string a, b;
    cin >> a >> b;
    if(a == b)
        cout << "yes" << endl;
    else
        cout << "Not" << endl;
    return 0;
}



কোন মন্তব্য নেই:

একটি মন্তব্য পোস্ট করুন