#include <avr/io.h> 

main(void) {
  DDRD = (1 << DDD1)|(1 << DDD3);   // Set PD7 as output // 
  TCCR2 = (1 << PORTD1)|(1 << PORTD3);   // Set PD1 and PD3 High //
  while (1){ }
}
