#include "hardware_dependent.h"
void setup() {
// put your setup code here, to run once:
init_port();
}
void loop() {
// put your main code here, to run repeatedly:
volatile int x;
volatile int y;
volatile long i;
volatile long j;
x=input();
if(x==0x01)
{
y=0b01010101;
output(y);
}
}