1
 2
 3
 4
 5
 6
 7
 8
 9
10
#include <stdio.h>

void main() {
    // printf("hi there %s\n", "American");
    puts("Tell me something American:");
    int a;

    scanf("%d",&a);
    printf("%d",a); // mindless echo
}