Untitled
unknown
c_cpp
2 years ago
236 B
12
Indexable
#include <iostream>
using namespace std;
int main ()
{
int n;
cin >> n;
if (n>1){
if (n%2 == 0)
cout << n/2;
if (n%2 !=0)
cout << n;
}
else
cout << "ny ne poshlo chtoto)))"
}Editor is loading...