20191005v3
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
a = 6
b = 3
print(a,b)
x = 10
y = 45
print(x*y)
t = 393
y = 34
print(t,y)
A = 54
B = 45
print(A/B)
a = 43
s = 43
print(a*s)
g = 45
h = 88
print(g,h)
n = 1
m = 2
print(n,m)
q = 23
Q = 0
print(q,Q)
a = b
b= 10
print(a,b)
F = 2
D = 2
print(F,D)
w = 4
e = 90
print(w,e)
v = 7
c = 656
print(v*c)
th = 4
er = 2
print(th,er)
cd = 40
ab = 14
print(ab,cd)
te = 30
et = 3
print(te,et)
l = 20
y = 19
print(l,y)
p = b
p = 23
print(b,p)
r = 1
u = 3
print(r,u)
er = 490
re = 940
print(er,re)
ws = 400
sw = 15
print(sw,ws)
v = 4
p = 2
print(v,p)
b = 4
u = 123
print(u,b)
a = 12
m = 90
print(a,m)
u = 9800
s = 8900
print(s*u,u/s)
ty = 43
b = 33
print(ty,b)
Python
INFO