/*EXPECTED
-1
0.5
*/
class _Main {
	static function main(args : string[]) : void {
		log 1 - (1 + 1);
		log 2 / (2 * 2);
	}
}
