CB001


Submit solution

Points: 10
Time limit: 1.0s
Memory limit: 512M

Problem type

CB001


Comments


  • -1
    10Tin_nguyenkhanhduong  commented on July 9, 2024, 10:26 p.m.

    include <bits/stdc++.h>

    using namespace std; long long n,m,U; int main() { cin>>n>>m; U=__gcd(n,m); cout<<U; return 0; }