2 solutions

  • 0
    @ 2022-2-24 9:15:04
    #include<bits/stdc++.h>
    using namespace std;
    int main(){
    	long long a,b;
    	while(cin>>a>>b){
    		long long t;
    		while(b>0){
    			t=a%b;
    			a=b;
    			b=t;
    		}
    		cout<<a<<endl;
    	}
    	return 0;
    }

    Information

    ID
    286
    Time
    1000ms
    Memory
    256MiB
    Difficulty
    3
    Tags
    # Submissions
    92
    Accepted
    47
    Uploaded By