#include int main(void) { int x; printf("整数を 1 つ入力してください:"); scanf("%d", x); printf("入力された整数は %d です\n", x); return 0; }