Cod sursa(job #3244163)
| Utilizator | Data | 23 septembrie 2024 22:14:21 | |
|---|---|---|---|
| Problema | Algoritmul lui Euclid | Scor | 0 |
| Compilator | cpp-64 | Status | done |
| Runda | Arhiva educationala | Marime | 0.15 kb |
#include <iostream>
#include <algorithm>
using namespace std;
int main()
{
int a,b;
cin>>a>>b;
cout<<__gcd(a,b);
return 0;
}
