| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 55984 | laichihao | 最大公约数、最小公倍数 | C++ | Compile Error | 0 MS | 0 KB | 156 | 2024-11-08 18:00:05 |
#include<iostream> #include<algorithm> using namespace std; int main(){ int a,b; cin>>a>>b; cout<<__gcd(a,b)<<__lcm(a,b); return 0; }