1// Include the library for console in-/outputs
2#include <iostream>
3// Include the libary for strings
4#include <string>
5
6// Main function
7int main()
8{
9 // Initialize variable
10 std::string value;
11 // Read from console
12 std::getline(std::cin, value);
13}