diff --git a/Solutions/Shandy/shandy.cpp b/Solutions/Shandy/shandy.cpp new file mode 100644 index 00000000..15809357 --- /dev/null +++ b/Solutions/Shandy/shandy.cpp @@ -0,0 +1,8 @@ +#include + +int main() { + int a, b; + std::cin >> a >> b; + std::cout << std::min(a, b) * 2; + return 0; +} \ No newline at end of file