#!/usr/bin/python3 # -*- coding: utf-8 -*- def print_what() -> None: g: int = 3 i: int = 5 print(g, i) g: int = 4 print_what() print(g) print(i)