I am new using Python so I am taking a course. Our challenge was to make a small program that calculates in what year you will be 100 years old. In line 8, I am marked with an error in the syntax, how can I solve it? Here is my code:
import string
import random
import age
date = 2017+100
name = input("Enter your name: ")
print()
age = int(input("Enter your age: ")
print ("So, you will be 100 years old in " + age + -(int(date)))
time.sleep(20)