diff --git a/LibreOJ/P41237/P41237.cpp b/LibreOJ/P41237/P41237.cpp deleted file mode 100644 index 4b114567..00000000 --- a/LibreOJ/P41237/P41237.cpp +++ /dev/null @@ -1,10 +0,0 @@ -#include - -using namespace std; - -int main() { - int a, b; - cin >> a >> b; - cout << (a / __gcd(a, b) + b / __gcd(a, b) - 1) * __gcd(a, b) << endl; - return 0; -}