Sunday, September 22, 2019

প্রোগ্রামিং সম6্যা 6 - [৫২ সমস্যা বই] যোগফল


#include< iostream > using namespace std;
int main()
{
int tc;
string s;
cin >> tc;
while(tc--){
cin >> s;
cout << "Sum = " << s[0]-'0' + s[4]-'0' << endl;
}
return 0;
}

No comments: