```c #include<stdio.h> int main() { int x=1; printf("请输入123"); scanf_s("%d", &x); x = x + 198; printf("%d", x); return 0; }
```