cs/Practical File/questions/question_01.py
Neil Revin 780baf678e
chore: move question & output files
Move python question files to 'questions' directory
Move output files to 'outputs' directory
Copy output files to 'questions' for ease of viewing

Signed-off-by: Neil <neil@willofsteel.me>
2025-06-24 02:34:07 +05:30

8 lines
208 B
Python

# Question: Write a Python program to accept two integers and print their sum.
def main(int1: int, int2: int) -> int:
print(f"{int1} + {int2} = {int1 + int2}")
if __name__ == '__main__':
main(2, 2)