Please enter the commit message for your changes. Lines starting

with '#' will be ignored, and an empty message aborts the commit.
master
sofi 3 years ago
parent 059a9cabca
commit bc5865e7e4
  1. 2
      task3.py
  2. 6
      task4.pu

@ -2,4 +2,4 @@ a = print("введите первоу число: " , end = "")
a = int(input())
b = print("введите первоу число: " , end = "")
b = int(input())
print(a, "+" ,d, "=" ,int(a + b))
print(a, "+" , b , "=" ,int(a + b))

@ -0,0 +1,6 @@
a = int(input("введите первое число: "))
b = int(input("введите второе число: "))
if a > b:
print(a)
elese:
if a < b
Loading…
Cancel
Save