#include int main(){ printf("Enter a number: "); int x; scanf("%d", &x); printf("You entered %d\n", x); return 0; }