update test case

This commit is contained in:
2025-10-02 10:50:33 +09:00
parent cc3de91036
commit 844f29a803
7 changed files with 337 additions and 0 deletions

View File

@@ -1,16 +0,0 @@
/* A program to perform Euclid's
Algorithm to compute gcd */
int gcd(int u, int v)
{
if(v == 0) return u;
else return gcd(v, u- u/v * v);
/* hello u-u/v*v == u mod v */
}
void main()
{
int x; int y;
x = input(); y = input();
print(gcd(x, y));
}