CS Armenia Հիմնադրամ
#include <iostream> int main() { const int MAX_SIZE = 256; char input[MAX_SIZE]; std::cout << "Insert Text: "; std::cin.getline(input, MAX_SIZE - 1); std::cout << input << std::endl; // put your code here }