#include <stdio.h>
int main(){
//Prepares I and J
int i; int j;
printf("Aera23 loop\n");
printf("Type i: \n");
scanf("%d", &i);
printf("Type j: \n");
scanf("%d", &j);
//Loop until i below 1
while (i > 1) {
//Add I to itself, then subtract j from i
i=i+i; i=i-j;
printf("i>>%d\n", i);
//Add j to itself. Somehow, i=8&j=1 eventually zeros I without overflow
j=j+j;
printf("j>%d\n", j);
}
}