/* Lek med if satser. Du anger klockslag och programet ger förslag!
Khosrow Chavoshi
PCSK-9  TBV  */

#include <iostream.h>
int main()

{

 int tal;
 cout<<"Vad klockan ar?\n";
 cin>>tal;
 if(tal<12)
  cout<<"Vakna!\n";
 
 if(tal>=17)
  cout<<"Dagens arbete ar slut!\n";

 if(tal>=12 && tal<17)
  cout<<"God middag!\n";

return 0;
}