🏡 index : github.com/captn3m0/codechef.git

---
{"category_name":"school","problem_code":"DECINC","problem_name":"Decrement OR Increment","languages_supported":{"0":"C","1":"CPP14","2":"JAVA","3":"PYTH","4":"PYTH 3.6","5":"PYPY","6":"CS2","7":"PAS fpc","8":"PAS gpc","9":"RUBY","10":"PHP","11":"GO","12":"NODEJS","13":"HASK","14":"rust","15":"SCALA","16":"swift","17":"D","18":"PERL","19":"FORT","20":"WSPC","21":"ADA","22":"CAML","23":"ICK","24":"BF","25":"ASM","26":"CLPS","27":"PRLG","28":"ICON","29":"SCM qobi","30":"PIKE","31":"ST","32":"NICE","33":"LUA","34":"BASH","35":"NEM","36":"LISP sbcl","37":"LISP clisp","38":"SCM guile","39":"JS","40":"ERL","41":"TCL","42":"kotlin","43":"PERL6","44":"TEXT","45":"SCM chicken","46":"PYP3","47":"CLOJ","48":"COB","49":"FS"},"max_timelimit":1,"source_sizelimit":50000,"problem_author":"tanmay28","problem_tester":null,"date_added":"2-06-2018","tags":{"0":"tanmay28"},"time":{"view_start_date":1521136800,"submit_start_date":1521136800,"visible_start_date":1521136800,"end_date":1735669800},"is_direct_submittable":false,"layout":"problem"}
---
<span class="solution-visible-txt">All submissions for this problem are available.</span>Write a program to obtain a number $N$ and increment its value by 1 if the number is divisible by 4 $otherwise$ decrement its value by 1.

###Input:

- First line will contain a number $N$.

###Output:
Output a single line, the new value of the number.

###Constraints 
- $0 \leq N \leq 1000$


###Sample Input:
	5

###Sample Output:
	4
	
###EXPLANATION:
Since 5 is not divisible by 4 hence, its value is decreased by 1.