#include int main() { int age; printf("How old are you?\n"); scanf("%d", &age); printf("Big deal, I'm %d\n", age + 3); return 0; }