I found the solution by myself.
In the file, lib/Zend/Currency.php
change the following line
‘precision’ => 2,
to
‘precision’ => 0,
And in another file, app/code/core/Mage/Core/Model/Store.php
change the following line
return round($price, 2);
to
return round($price, 0);
By editing the files, I could send data to paypal with no digits after the decimal point.
Thank you for your attention.