summaryrefslogtreecommitdiffstats
path: root/01-algorithmic_toolbox/01-intro/04-lcm/lcm.cpp
blob: c6f503c0301a54c063d619a933a504dcefcb3e1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <iostream>

long long lcm(int a, int b) {
  //write your code here
  return a*b;
}

int main() {
  int a, b;
  std::cin >> a >> b;
  std::cout << lcm(a, b) << std::endl;
  return 0;
}