//how to take input and print that
int aNumber;
std::cout << "Enter a number" << std::endl; //this will print this string
std::cin >> aNumber; //this will put the user entered number in this variable
std::cout << "You entered" << aNumber << std::endl;
1 2 3
//how to add two number's
//take two number as input like the previous one
int addition = Numberone + Numbertwo; //these are added, now print addition
cout<<"Enter the value of the first card: ";
cin>>card1;
cout<<"Enter the value of the second card: ";
cin>>card2;
cout<<"Enter the value of the third card: ";
cin>>card3;
cout<<"Your score is: ";