<?php

$strs = ['0C', '-1C', '-2C', '20C', '30C', -'50C'];
foreach($strs AS $str){
	echo intval($str).PHP_EOL;
}