#ifndef FUNCTION_H

#define FUNCTION_H

int gcd(int a,int b);
int lcm(int a,int b);

#endif
