Quick actions

cmd+k|ctrl+k

Navigation

Languages

Input exercise

Snippet info

Language

Python

Visibility

public

Author

hiramb77

Created

2026-03-28T04:16:04.609742Z

Updated

2026-03-28T04:16:42.922509Z

birth_year = input('What year were you born?')

birth_year = 1977
age = 2019 - int(birth_year)

print(f' your age is : {age}')




INFO