#include int main(void) { int no; printf("Input an integer: "); scanf("%d", &no); printf("You inputed %d.\n", no); return 0; }