Skip to content

ramanuj760/Python1

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Python1

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)

About

python basic arithmetic program

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%