4. Print Percent Symbol

Easy ⏱️ 2 min

Description

Print the following output: %%

Input:
NA
Output:
%%
Constraints:
NA

Solution

#include <iostream>

using namespace std;

int main() {
    cout << "%%";
    return 0;
}