#include <stdio.h>

int three()
{
    return 3;
}

int main()
{
    int x;

    x = three();

    printf("x=%d\n", x);

    return 0;
}
