#include#includeint demo(int a,int b){ if(a%b != 0) demo(b,a%b); else return b;}void main(){ int a,b; printf("input a,b:"); scanf("%d %d",&a,&b); printf("Common demo of a,b is %d\n",demo(a,b)); getch();}