балов
1. If my friends ___ , I ___ very happy.
а)will come б)comes come в)will be г)be д)am
2. If she ___ a lot of money, she ___ to New York.
а)will earn б)earn в)earns г)will fly д)flies е)fly
3. If they ___ harder, they ___ the exam.
а)won`t study б)doesn`t study в)don`t study г)won`t pass д)don`t pass е)doesn`t pass
Rewrite sentences into Passive Voice.
Tom and Max have just eaten five hamburger.
Oliver will teach the children.
Перепеши код на этот:
m, h = map(int, input("-").split('-'))
t, h = map(int, input("*").split('*'))
c, d = map(int, input("/").split('/'))
k, p = map(int, input("+").split('+'))
print(k, '+', p, '=', p+k, end= '\n');
print(m, '-', h,'=', m-h, end='\n');
print(t, '*', h, '=', t*h, end='\n');
print(c, '/', d,'=',c/d)
Сначала вводишь две цифры, к-е нужно вычесть, например: 3-2 (так и пиши при запуске. С тире). Затем так же с умножением, делением, прибавлением. В конце программа тебе вычислит все, что ты ей дал.