I know its very simple but I can't find out what the variable t is for. 
int main() {
    int a, b, x, y, t, gcd, lcm;
    printf("Enter two integers\n");
    scanf("%d%d", &x, &y);
    a = x;
    b = y;
    while (b != 0) {
       t = b;
        b = a % b;
        a = t;
    }
    gcd = a;
    lcm = (x*y)/gcd;
    printf("Greatest common divisor of %d and %d = %d\n", x, y, gcd);
    printf("Least common multiple of %d and %d = %d\n", x, y, lcm);
    return 0;
}
If I remove the usage of variable t, the input has to be given in decreasing order (i.e. highest input first). If t is used everything works fine. I am very new to programming so please help.
 
     
     
     
    