#include <stdio.h>

int main(){
    int i=42;
    printf("i= %i, sizeof(i): %li\n", i, sizeof i);
}
