Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream.h>
- #include <conio.h>
- int main()
- {int a,b;
- cin>>a>>b;
- while(a!=b)
- {
- if(a>b)
- {
- a=a-b;
- }
- else
- {
- b=b-a;
- }
- }
- cout<<b;
- getch();
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement