#include <stdio.h>
#include <stdlib.h>
extern "C"{
unsigned int lab5_act_2_3(int x,int y);
}
void setup() {
// put your setup code here, to run once:
pinMode(LED_BUILTIN, OUTPUT);
}
void loop() {
unsigned int x,y;
printf("Enter the value of x:");
scanf("%d",&x);
printf("%d",x);
printf("\nEnter the value of y:");
scanf("%d",&y);
printf("%d",y);
printf("\n");
if(lab5_act_2_3(x,y) == 1)
{
printf("x is lower than y\n");
}
else
{
printf("x is higher than or same as y\n");
}
}