/******************************************************************************
Welcome to GDB Online.
GDB online is an online compiler and debugger tool for C, C++, Python, PHP, Ruby,
C#, VB, Perl, Swift, Prolog, Javascript, Pascal, HTML, CSS, JS
Code, Compile, Run and Debug online from anywhere in world.
*******************************************************************************/
# include <stdio.h>
int main(){
unsigned a, b, x, y, temp;
a=100;
b=30;
x=a*b;
printf("%u", x);
while(b) temp=a%b, a=b, b=temp;
y=b;
x/=y; // x = x/y
printf("%u", x);
return 0;
}