One of the works done by our Robotics and Machine Learning division, SELF-LEVELING QUADCOPTER
Arduino based Quadcopter.
Self-leveling is acheived by the aligning the quadcopter using the readings from the gryo as well as the accelerometer.
A four channel RC transmitter is used to control the movement of the quadcopter when in flight.
Kindly subscribe to our YouTube Channel and stay tuned.
a=int(input())
b=int(input())
flag=0
for p in range(2,min(a,b)):
if(a%p==0 and b%p==0):
flag=1;
if(flag==1):
print("Not coprime")
else:
print("Coprime")