Dowhile.cpp

#include <iostream>
using namespace std; 

void main() {

char c;

do {

c=cin.get();
if(c!=EOF) 
cout.put(c);

} while(c!=EOF);

}