X Tutup
#1.------------two number to add----------------- # a = int(input("Enter the first number to add: ")) # b = int(input("Enter the second number to add: ")) # print(a + b) #2.----------------------square of ther number----------------------- # a = int(input("Enter the number to make the square :")) # print(a*a) #3.-------------------Averge of the number given by the user------------------ # a = int(input("Enter the first number to make averge : ")) # b = int(input("Enter the second number to make averge : ")) # print((a+b)/2) #4.--------------------reminder of the divided number----------------- # a = 324 # b = 34 # print(a%b) #5.-------------BOOLEAN EXPRESION------------- # a = int(input("Enter the first number to comparision : ")) # b = int(input("Enter the second number to comparision : ")) # print(a>b)
X Tutup