diff options
Diffstat (limited to '6p25.cpp')
-rw-r--r-- | 6p25.cpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/6p25.cpp b/6p25.cpp new file mode 100644 index 0000000..eb38b5f --- /dev/null +++ b/6p25.cpp @@ -0,0 +1,21 @@ +#include <iostream> + +/* + * + * 6.25 + * + * + */ + +int main (int argc, char **argv) { + + if (argc < 3 || argc > 3) { + return -1; + } + + std::string arg1 = argv[1]; + std::string arg2 = argv[2]; + std::string concated = arg1 + arg2; + std::cout << concated << std::endl; + return 0; +} |