1000000000

#include <stdio.h>

int main() {
    long long int n = 1000000000; // Initialize n with the value 1000000000

    printf("n = %lld\n", n); // Print the value of n

    return 0; // Return 0 to indicate successful completion of the program
}