#pragma once namespace std { template T abs(T v) { return v >= 0 ? v : -v; } }