#include <iostream>
using namespace std;

int main() {
    int temperatura;
    cin >> temperatura;
    if (temperatura <=20) {
    cout << "Hace frío lleva un abrigo"<< endl;
    } else {
       cout << "Hace un buen clima, no lleves abrigo" << endl;
    }
    return 0;
}

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: