Solution - UVa Problem 1124 - Celebrity jeopardy
সল্যুশন্সঃ
#include<bits/stdc++.h>
using namespace std;
int main(){
char s[1000];
while(gets(s)){
cout << s << endl;
}
return 0;
}
আলোচনাঃ
কিছুই ভাবতে হবে না। যা ইনপুট নিবেন চোখ বুঝে তা আউটপুট দিলে ই AC.
Comments
Post a Comment