Skip to content

Latest commit

 

History

History
31 lines (26 loc) · 792 Bytes

README.md

File metadata and controls

31 lines (26 loc) · 792 Bytes

Problem 001

Write a program which accepts two numeric inputs and apply 4 basic math operations on the user input. Your program must include 4 functions:

  • add
  • subtract
  • multiply
  • divide

Persian Description

برنامه ای بنویسید که با استفاده از چهار تابع, چهار عمل اصلی ریاضی را بر روی دو عدد اعمال کند. برنامه دو عدد از ورودی دریافت کرده و چهار تابع مذکور را با ورودی های دریافتی فراخوانی کرده و حاصل عملیات ها را چاپ کند.

Sample Input/Output

Input:

120 30
10 20

Output:

120 + 30 is 150
120 - 30 is 90
120 / 30 is 4
120 * 30 is 360
10 + 20 is 30
10 - 20 is -10
10 / 20 is 0.5
10 * 20 is 200