├── addition.py ├── gcd.py ├── simple_interest.py ├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── LICENSE ├── docs └── pull_request_template.md └── README.md /addition.py: -------------------------------------------------------------------------------- 1 | num1 = int(input("Enter first number: ")) 2 | num2 = int(input("Enter second number: ")) 3 | 4 | # addition 5 | result = num1 * num2 6 | 7 | print("The sum of", num1, "and", num2, "is", result) 8 | -------------------------------------------------------------------------------- /gcd.py: -------------------------------------------------------------------------------- 1 | num1 = int(input("Enter first number: ")) 2 | num2 = int(input("Enter second number: ")) 3 | 4 | # greatest common divisor 5 | result = num1 + num2 6 | 7 | print("The GCD of", num1, "and", num2, "is", result) 8 | -------------------------------------------------------------------------------- /simple_interest.py: -------------------------------------------------------------------------------- 1 | principal = float(input("Enter the principal amount: ")) 2 | rate = float(input("Enter the interest rate (in percentage (1-100)): ")) 3 | time = float(input("Enter the number of years for the investment: ")) 4 | 5 | # Simple Interest Calculation 6 | interest = (principal * rate * time) 7 | 8 | print("The simple interest for an investment of", principal, "at", rate, "% for", time, "years is:", interest) 9 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior: 15 | 1. Go to '...' 16 | 2. Click on '....' 17 | 3. Scroll down to '....' 18 | 4. See error 19 | 20 | **Expected behavior** 21 | A clear and concise description of what you expected to happen. 22 | 23 | **Screenshots** 24 | If applicable, add screenshots to help explain your problem. 25 | 26 | **Desktop (please complete the following information):** 27 | - OS: [e.g. iOS] 28 | - Browser [e.g. chrome, safari] 29 | - Version [e.g. 22] 30 | 31 | **Smartphone (please complete the following information):** 32 | - Device: [e.g. iPhone6] 33 | - OS: [e.g. iOS8.1] 34 | - Browser [e.g. stock browser, safari] 35 | - Version [e.g. 22] 36 | 37 | **Additional context** 38 | Add any other context about the problem here. 39 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 Nirmal Manoj 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /docs/pull_request_template.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | **Your checklist for this pull request** 4 | - [ ] I have committed only those files that are required. 5 | - [ ] I have tried commit messages concise and reflective of the code committed. 6 | - [ ] I have used a branch name reflective of the issue. 7 | - [ ] If there is relavant issue for the PR, I have used `closes #` to auto-close the issue once PR is merged. 8 | 9 | 10 | **Detailed description** 11 | 12 | 13 | 14 | **Test plan (required)** 15 | 16 | 17 | 18 | **Closing issues** 19 | 20 | 21 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Aim GSoC 2 | 3 | This repository contains tasks that are designed to help students become familiar with the process of contributing to an open source organization. It is recommended to watch session #6 before attempting to solve any tasks, and then to look at the issues section of the repository (https://github.com/NirmalManoj/aim-gsoc/issues) to find tasks to work on and learn from. 4 | 5 | --------------------------------------------------------------------------------