提交时间:2025-10-20 19:56:47
运行 ID: 70804
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c,x=2; cin>>a>>b>>c; for(!(a%x==b%x&&b%x==c%x)){ x=x+1; } cout<<x; return 0; }