OJ-Problems-Source/CodeVS/1012-unfinished_冰封.c
2016-07-06 14:28:18 +08:00

22 lines
286 B
C

/*
作者:千里冰封
题目:p1012 最大公约数和最小公倍数问题
*/
#include <stdio.h>
long get(long x, long y){
long m = y / x;
long i, cnt = 0;
for(i = 1; i < m; i++){
}
}
int main(int argc, char* argv[]){
long a, b, m;
scanf("%i%i", &a, &b);
printf("%i", get(a, b));
return 0;
}