Quick actions

cmd+k|ctrl+k

Navigation

Languages

EXCERCISE 02

Snippet info

Language

Python

Visibility

public

Author

sermon0906

Created

2026-06-25T13:43:46.110824Z

Updated

2026-06-25T14:02:17.654599Z

birth_year = input('what year were you born in ?')
print(birth_year)
age = 2026 - int(birth_year)
print(f'my age is {age}')
INFO