#include<stdio.h>
int main()
{
    int x , y , i , gcd , k;
    printf(" Enter the first number : ");
    scanf("%d", &x);
    printf(" Enter the second number : ");
    scanf("%d", &y);
    for( i =1 ; i <=x && i <=y ; i++)
    {
        if( x%i==0 && y%i==0)
            gcd = i;
    }
    printf("The gcd of %d and %d is %d ", x,y,gcd);
    return 0;
}
OUTPUT :
Follow
Me On Social Media :-
INSTA photography page :- https://www.instagram.com/photo_mania_hub/
Twitter link : - https://twitter.com/ApurbaKhanra199
Facebook page link (Crazy Coders) :-https://www.facebook.com/codercrazy/?modal=admin_todo_tour
Insta photography link :- https://www.instagram.com/photo_mania_hub/
Facebook link :- https://www.facebook.com/profile.php?id=100009747586288
FB photography page :- 
https://www.facebook.com/photomaniahub/?modal=admin_todo_tour
For tech related videos visit my other website :- https://apurbatechinfo.blogspot.com/

0 Comments