| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 55988 | laichihao | 最大公约数、最小公倍数 | C++ | Wrong Answer | 0 MS | 256 KB | 179 | 2024-11-08 18:02:59 |
#include<iostream> #include<algorithm> using namespace std; int main(){ int a,b; cin>>a>>b; int m=__gcd(a,b); int n=a*b/m; cout<<m<<n; return 0; }