/* * strengthRed.c */ #include int main(){ // strengthRed.c int n, m; scanf("%d", &n); m = 48*n; printf("m: %d\n", m); return 0; }