#include <stdio.h>

main()
{
    float result;

    result = 21.0 / 7.0;
    printf("The result is %d\n", result);
    return (0);
}

