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