#include <iostream>
#include <stdio.h>
#include <ctype.h>
#include <string.h>
#include <bitset>
using namespace std;
int main(){
bool Y = true;
bool N = false;
string name;
cout << "Please enter your name: ";
getline(cin, name);
cout << "Hello " << name << ", please answer the following questions as Y (stands for yes) and N (stands for no)" << endl;
string question_1;
cout << "Do you have any symptoms of fever, cough, tiredness, losing the sense of the taste or smell: ";
getline(cin, question_1);
string question_2;
cout << "Do you have any contact with someone who has become infected from Covid-19: ";
getline(cin, question_2);
string question_3;
cout << "Have you traveled abroad in last 14 days: ";
getline(cin, question_3);
string question_4;
cout << "Please write down your adress: ";
getline(cin, question_4);
cout << "Thanks for your answers, " ;
if(true > false){
cout << "You are infected from Covid-19";
}else{
cout << "You are not infected from Covid-19";
}
return 0;
}