#include <stdio.h>
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
void app_main() {
//defining the variables
uint8_t a = (255>>5);
uint8_t b = (30<<4);
uint8_t c = 54;
//setting vito to be the xor of b and c
uint8_t vito = b^c;
//printing them all out
printf("a = %i\n", a);
printf("b = %i\n", b);
printf("c = %i\n", vito);
}