eolymp
bolt
Try our new interface for solving problems
Problems

Previous even integer

published at 3/19/24, 12:05:45 pm

include<iostream>

using namespace std; int main(){ int a; cin>>a; if(a%2==0) cout<<a-2; else cout<<a-1;

}