Why is the value of x not changing
How do you use a fraction with an integer in c
#include <stdio.h>
int main(void)
{
    int x , y , n=0;
    scanf("%d", &x);
    scanf("%d", &y);
    printf("%d %d\n",x , y);
        
    x = (13/12) * x;
    printf("%d\n", x );
}
