Secure Access Gate

Easy
#logic #security

Input: `username` (str), `password` (str). Return: `True` if username is 'admin' and password is '1234', else `False`.

Example

Input: 'admin', '1234'
Output: True
Need a hint?
  • Both username AND password must match
Run your code to see output