#include using namespace std; int gcd(int a,int b) { return b?gcd(b,a%b):a; } int main() { int n,m; cin>>n>>m; cout<