Untitled

 avatar
unknown
c_cpp
2 years ago
206 B
4
Indexable
#include <iostream>
 
using namespace std;
 
int main() {
    int x;
    cin >> x;
    
    if(x < 10) {
    
        cout << "Brojot e pomal od 10" << endl;
    }
    cout << "DA" << endl;
    return 0;
}
Editor is loading...