#include <iostream.h>

float answer;  // the result of the divide 

main()
{
    answer = 1/3;
    cout << "The value of 1/3 is " << answer << "\n"; 
    return (0);
}

