<?php
 
error_reporting(-1);
 
$dollars = 200;
$exchangeRate = 65.5393892;
$roubles = round($dollars*$exchangeRate, 2); 
 
echo "$dollars долларов можно обменять на $roubles рублей";