# Routine to test a Pentium processor. 
#
# Should return 0.00000
# 'bugged' Pentium return 256.000000
#
#

#include <stdio.h>
int main()

{
double x,y,z;
     x = 4195835.0;
     y = 3145727.0;
     z = x - (x / y) * y;
printf("%f\n",z);
return 0;
}
