#include int main(void) { DDRB &= 0b11011111; while (1) { if(PINB & 0b00100000) DDRB &= 0b11101111; else DDRB |= 0b00010000; } return 0; }