13 lines
170 B
C
13 lines
170 B
C
#include <stdio.h>
|
|
|
|
int main(void) {
|
|
int x = 0;
|
|
|
|
printf("Input integer: x = ");
|
|
scanf("%d", &x);
|
|
|
|
printf("Result: x - 7 = %d\n", x - 7);
|
|
|
|
return 0;
|
|
}
|