Untitled
Anonymous
c_cpp
10/28/2023 6:35 PM
244 B
16
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 << "0";
}Editor is loading...