7 lines
134 B
Text
7 lines
134 B
Text
|
|
(include "string" "algorithm")
|
||
|
|
(main
|
||
|
|
(decl std::string s)
|
||
|
|
(std::getline std::cin s)
|
||
|
|
(std::reverse (s.begin) (s.end))
|
||
|
|
(prn s))
|