• Source
    1. #include <iostream>
    2. using namespace std;
    3.  
    4. int main() {
    5. int c = 1,d=2;
    6. /*
    7. cout << c << endl;
    8. cout << d << endl;
    9. */
    10. cout << c << d << endl;
    11. double a = 3.2;
    12. double b = 4.5;
    13. cout << c+a << endl;
    14. }