You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
344 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

int gcd(int a, int b) {
return 1;
}
int main(){
int a,b;
a = getint();
b = getint();
gcd(gcd(),gcd());
putint(gcd(a));
putch(LF);
return 0;
}
// Redefined Function 函数重复定义
// 不要出现这样的形式putint(gcd(a))putint是系统自带函数没有处理因为没有进行处理