← Back

1. Print Text with Special Characters

Easy

📝 Problem

Print the following output: Let's learn 'C++' together with Axora

Input Format:
NA
Output Format:
Let's learn 'C++' together with Axora
Constraints:
NA

Examples

Sample Output:
Output:
Let's learn 'C++' together with Axora
Solution.cpp
#include <iostream>

using namespace std;

int main() {
    cout << "Let's learn 'C++' together with Axora";
    return 0;
}