python basic arithmetic program num1 = int(input('Enter First number: ')) num2 = int(input('Enter Second number ')) add = num1 + num2 dif = num1 - num2 mul = num1 * num2 div = num1 / num2 floor_div = num1 // num2 power = num1 ** num2 modulus = num1 % num2 print('Sum of ',num1 ,'and' ,num2 ,'is :',add) print('Difference of ',num1 ,'and' ,num2 ,'is :',dif) print('Product of' ,num1 ,'and' ,num2 ,'is :',mul) print('Division of ',num1 ,'and' ,num2 ,'is :',div) print('Floor Division of ',num1 ,'and' ,num2 ,'is :',floor_div) print('Exponent of ',num1 ,'and' ,num2 ,'is :',power) print('Modulus of ',num1 ,'and' ,num2 ,'is :',modulus)
forked from sbeee04/Python1
-
Notifications
You must be signed in to change notification settings - Fork 0
ramanuj760/Python1
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
python basic arithmetic program
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published
Languages
- Python 100.0%