#include <iostream>
#include <string>
using namespace std;
int main(){
    
    string i= "Hello world";//Literally what's in quotes
    bool j= true; //True or false -- 0, 1,  true, false
    char k= 'a'; 
    
    if(j==true){
        if(k=='a'){
            cout<< i;
        }
    }
    else {
        cout << "Whoops, false";
    }
    
    int m = 1; // Interger number,  whole number.   -32,768    -    32,767
    long n =123534241431;//Used to store numbers bigger than an int
    float o = 1233.12344; // Floating point number
    double p = 12353252313.123123; //is a float, with double the storage space
    
    
    
    return 0;
}
