#include <stdio.h> int gcd(int a, int b){ if(b == 0) return a; else return gcd(b, a%b); } int main(void){ printf("%d\n", gcd(1777, 823)); return 0; }
To embed this project on your website, copy the following code and paste it into your website's HTML: