跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F1849. Calculating Function

    ID: 1855 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 1 上传者: 标签>模拟数学编程与模拟入门难度共享题库Codeforces英文题面题目来源题面语言

Calculating Function

题目描述

A. Calculating Function
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

For a positive integer n let's define a function f:

f(n)=-1+2-3+..+(-1)nn

Your task is to calculate f(n) for a given integer n.

Input

The single line contains the positive integer n (1≤n≤1015).

Output

Print f(n) in a single line.

Examples
Input
4
Output
2
Input
5
Output
-3
Note

f(4)=-1+2-3+4=2

f(5)=-1+2-3+4-5=-3


题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 1420 题。保留原作者与原赛事署名。