소스 검색

Add 'E.cpp'

webturing 4 년 전
부모
커밋
51821699b3
1개의 변경된 파일8개의 추가작업 그리고 0개의 파일을 삭제
  1. 8 0
      E.cpp

+ 8 - 0
E.cpp

@@ -0,0 +1,8 @@
+#include<bits/stdc++.h>
+using namespace std;
+int main(){
+    int a,b;
+    cin>>a>>b;
+    cout<<a*b/__gcd(a,b);
+    return 0;
+}