#include<LCD4_128.h>
#include<FPU_128.h>
int x;
void main()
{
Init_Fpu();
Lcd_init();
while(x<10)
{
LCD.PRINT(x);
x++;
}
}