Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- def mult_two(a: int, b: int) -> int:
- # your code here
- return 0
- print('Example')
- print(mult_two(1, 2))
- assert mult_two(3, 2) == 6
- assert mult_two(0, 1) == 0
- assert mult_two(6, 3) == 18
- assert mult_two(6, 7) == 42
- print("The first mission is done! Click 'Check' to earn cool rewards!")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement