1124 - Celebrity jeopardy | UVa
Problem Link : 1124 - Celebrity jeopardy
Solution :
Develop by Samsus Salehin Sabbir
- #include <iostream>
- using namespace std;
- int main() {
- // your code goes here
- string name;
- while(getline(cin,name))
- cout <<name <<endl;
- return 0;
- }
No comments