Tuesday 20 September 2016

ACCEPTING 6 DATA VALUES AND DISPLAYING

#include <iostream>
#include <cstdio>
using namespace std;

int main() {
std::string s;
for(int i=0; i<6; i++) {
    std::cin >> s;
    std::cout << s << std::endl;
}
}

No comments:

Post a Comment