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是系统自带函数没有处理?(因为没有进行处理