Skip to content

Instantly share code, notes, and snippets.

@cthbst
Last active May 14, 2016 08:53
Show Gist options
  • Save cthbst/21489701c02d5308c8cf10b5147aeaf1 to your computer and use it in GitHub Desktop.
Save cthbst/21489701c02d5308c8cf10b5147aeaf1 to your computer and use it in GitHub Desktop.
#include<iostream>
using namespace std ;
int main(){
int a ,b ;
while (cin >> a >> b ){
int ans = 1 ;
for (int i=2 ;i<=a && i<=b ;i++ ){
if (a%i==0 && b%i==0){
ans=i ;
}
}
cout << ans <<endl ;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment