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