• Source
    1. #include <iostream>
    2. using namespace std;
    3.  
    4. int main() {
    5.  
    6. int number = 103;
    7. int students = 24;
    8.  
    9. /* we are now assigning value to the defined variables
    10. we are inserting the numeric value of 103 to number
    11. we are inserting the numeric value of 24 to students
    12. */
    13.  
    14. return 0;
    15. }