diff options
author | Oskar <[email protected]> | 2024-09-09 20:25:43 +0200 |
---|---|---|
committer | Oskar <[email protected]> | 2024-09-09 20:25:43 +0200 |
commit | 70878e5c5b4552def51082829032780c536dc59d (patch) | |
tree | 015253d567c12d90d6509ee052466217b3eacaa4 /6p25.cpp | |
parent | cc01160a3f0fdcb27eb931f67e85d783d0f5626d (diff) |
more
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; +} |