#include int main(int argc, char* argv[]){ int n; printf("Please input a number\n"); scanf("%d", &n); printf("The number is %d\n", n); return 0; }