<html>
<head><title>302 Found</title></head>
<body bgcolor="white">
<center><h1>302 Found</h1></center>
<hr><center>nginx</center>
</body>
</html>
x = 100
def num(y):
x += y
print(x)
def user():
y = int(input("Введите число: "))
num(y)
print(x)
user()