const int buzza = 2;

int DOR  = 131;
int RER  = 147;
int MIR  = 165;
int FAR  = 175;
int SOLR = 196;
int LAR  = 220;
int SIR  = 247;

int DO  = 262;
int RE  = 294;
int MI  = 329;
int FA  = 349;
int SOL = 392;
int LA  = 440;
int SI  = 493;

int DOT  = 524;
int RET  = 578;
int MIT  = 659;
int FAT  = 698;
int SOLT = 784;
int LAT  = 880;
int SIT  = 980;

void setup() {
  pinMode(buzza, OUTPUT);
}

void loop() {
  tone(buzza, SOL) ;  delay(500); //bin
  tone(buzza, MIT) ;  delay(400); //tang
  tone(buzza, RET) ;  delay(400); //ke
  tone(buzza, DOT) ;  delay(1000); //cil
  tone(buzza, SI)  ;  delay(400); //di
  tone(buzza, RET) ;  delay(400); //la
  tone(buzza, DOT) ;  delay(400); //ngit
  tone(buzza, SI)  ;  delay(400); //yang
  tone(buzza, LA)  ;  delay(400); //bi
  tone(buzza, SOL) ;  delay(1000); //ru
  tone(buzza, LA)  ;  delay(500); //a
  tone(buzza, SI)  ;  delay(400); //mat
  tone(buzza, DOT) ;  delay(400); //ba
  tone(buzza, SOL) ;  delay(800); //nyak
  tone(buzza, DOT) ;  delay(400); //me
  tone(buzza, MIT) ;  delay(400); //ng
  tone(buzza, SOLT);  delay(500); //hi
  tone(buzza, MIT) ;  delay(400); //as
  tone(buzza, DOT) ;  delay(400); //ang
  tone(buzza, RET) ;  delay(1000); //ka
  tone(buzza, SOLT);  delay(400); //sa
  tone(buzza, MIT) ;  delay(400); //a
  tone(buzza, RET) ;  delay(400); //ku
  tone(buzza, DOT) ;  delay(1000); //i
  tone(buzza, MIT) ;  delay(400); //ngin
  tone(buzza, SOLT);  delay(400); //ter
  tone(buzza, MIT) ;  delay(400); //bang
  tone(buzza, RET) ;  delay(400); //dan
  tone(buzza, DOT) ;  delay(400); //mena
  tone(buzza, LA)  ;  delay(1000); //ri
  tone(buzza, SI)  ;  delay(400); //ja
  tone(buzza, DOT) ;  delay(400); //uh
  tone(buzza, LA)  ;  delay(400); //ting
  tone(buzza, SOL) ;  delay(400); //gi
  tone(buzza, RET) ;  delay(400); //ke
  tone(buzza, MIT) ;  delay(400); //tem
  tone(buzza, FAT) ;  delay(400); //pat
  tone(buzza, RET) ;  delay(400); //kau
  tone(buzza, LA)  ;  delay(400); //be
  tone(buzza, SI)  ;  delay(400); //ra
  tone(buzza, DOT) ;  delay(2000); //da
}