I'm graduated in commerce 2014. After the Gap of 10years now I started webprogramming , by watching RUclips videos and now I started AI with the help of your videos
I AM from dera bugti backword area of balochistan i have done BBA. it is a little bit hard but i am very happy to say that i have gain so much information about AI i am learning and guiding my friends and family members as well thank u sir so much respect for you and your entire team that you are doing very working hard to keep guiding us .proud of you sir and so much respect for you sir .. lots of love💗
I am a school teacher and i have two kids , having nominal salary package, i have seen your video on u tube and i got so inspired by your way of teaching then i decided to learn with you. Now i am attending your online lectures and i am learning alot with you. No doubt i will be better knowledgeable than before. Thanks for your efforts of spreading light of knowledge in our nation.
00:10 Programming enables communication and logical thinking. 02:42 Programming is applicable in real life scenarios 07:15 Programming languages involve a set of instructions to communicate with the computer. 09:44 The evolution of software to solve problems 14:22 Python is a server programming language used for creating different systems from the web browser. 16:22 Variables in a program store values for later use. 20:25 Understanding the Boolean data type in programming 22:54 Conventions for naming variables are important 27:26 Introduction to Club Google Club and its significance 29:25 Google Colab provides a seamless environment for running Python code and installing packages. 33:55 Test the practical application and review resources allocation 35:59 Executing code in Python and initializing variables 40:52 Variables must follow naming conventions 43:07 Avoid using reserved words as variable names in Python 47:32 Introduction to basic programming concepts in Python 49:50 Arithmetic operations in Python 54:23 Understanding division and variable initialization 56:49 Learn about variables, declarations, initialization, and basic arithmetic operations in Python. Crafted by Merlin AI.
Am following 5th lecture with 4 kids . After 20 years of gap I am studying AI again. Really thank ful to Mr Irfan And Mr Shiraz for their devoted effeot .
Iam mom of 2 kids , did my b.e in cs 20 years back now want to start my career and these lectures are main triger point to me .. God bless u sir irfan and sir sheraz
57:54 for people who need solutions #using two variables. a = 50 b = 10 a = a+b # 60 b = a-b # 50 a = a-b # 10 print("a = " + str(a)) # Convert 'a' to a string before concatenating print("b = " + str(b)) #using 3 variables a = 50 b = 10 temp = a a = b b = temp print("a = " + str(a)) print("b = " + str(b))
Bro how are you,iam beginner but i learnt all till toady..but i wanna ask how did u write # ..but u didn’t tell about this symbol during lecture …at which time we will use that symbol..kindly tell me still confuse iam not being completing your task
Amazing Sir this is actually life changing..Allah SWT hmain qabil bnain or Allah SWT ap sbki mehntain qabool frmain ameen.Hats off to respected SIr @Irfan Malik.
Sir ye apne Achi baat kahin unse sikho jo practical kr rha he industry me ...meri dil se dua he Ap ko Allah bohot Tarakki den Aaameen .. sir me sikhna chahta hn me internship kr rha tha LLM pr but some reasons mjhe left krna padha phir ap mil gye mjhe Thank tou sir wiss you best .. Chat bot bnana sikhaye mjhe python se.
Thank you all. I have learnt to swap variables as task 2. I have no technical background. I am a content writer but feel need to learn new skills. I defined variables as a=1 and so on and gave command of print ( c,b,a). It gave me result of 321
I really appreciate your passion of delivering knowledge to the less privileged like me and such people. I am sure it will be very helpful for us to learn and grow. I am really grateful for your guidance and this program.
I am a 14 year old student of computer science and I am in 9 class . I am getting alot of new things by your videos Thanks for this remarkable hardwork
Salam sir ap ne Kaha ke ap thori basic samajh Kar Aaye so mein ne other python course ko bhi joined Kiya magar mujhe Kuch khaas samajh nhi Aaya phir mein ne ap ki python ki video dekhi to ye to bohot easy laga thank you so much sir for this course ap or ap ki team bohot Acha work Kar rhi he God bless you and your team
Thank you Sir Sheraz for explaining every thing in details & thanks to other teachers as well to teach us in a nice way. Jazak Allah Irfan bhai to arrange this lecture for all of us
Notes of Lecture No 5👇: **Programming Overview** - **Definition of Programming**: Programming is the process of creating a set of instructions that a computer can understand to perform specific tasks. It involves using a programming language to communicate with the computer . - **Importance of Programming**: - Enables logical thinking and problem-solving skills. - Essential for effective communication with computers, as they only understand binary (0s and 1s) . - Useful in various real-life scenarios, such as giving clear instructions in business or daily tasks . **Basic Concepts** - **Variables**: Variables are containers for storing data values. They can hold different types of data, such as integers, floats, characters, and strings . - **Data Types**: - **Integer**: Whole numbers (e.g., 1, 2, 3). - **Float**: Decimal numbers (e.g., 1.5, 2.7). - **Character**: Single letters or symbols (e.g., 'A', 'b'). - **String**: A sequence of characters (e.g., "Hello World") . - **Syntax**: Each programming language has its own syntax, which is a set of rules that defines the combinations of symbols that are considered to be correctly structured programs. Proper syntax is crucial for the program to run successfully . **Programming Languages** - There are multiple programming languages, each serving different purposes: - **Python**: Widely used for web development and data analysis. - **Java**: Commonly used for mobile applications and enterprise-level solutions. - **JavaScript**: Primarily used for web development . **Problem Solving in Programming** - **Debugging**: The process of identifying and removing errors from computer programs. It involves a systematic approach to finding solutions, similar to searching for a lost item by retracing steps . - **Algorithm**: A step-by-step procedure for solving a problem. For example, planning a trip involves defining steps to reach a destination . **Practical Application** - **Google Colab**: An online platform that allows users to write and execute Python code without complex setup. It simplifies the learning process by providing an accessible environment for coding . **Conclusion** - Understanding programming concepts, syntax, and problem-solving techniques is essential for anyone looking to become proficient in programming. Each programming language has unique features, but the fundamental principles remain consistent across different languages. **Google Colab Overview** - **Execution Environment**: Google Colab provides a complete execution environment with a lot of RAM, allowing easy installation of Python packages without configuration difficulties . - **Resource Allocation**: It offers a powerful processor and memory, which is beneficial for machine learning tasks, especially if your local machine lacks sufficient resources . **Connecting to Google Colab** - To connect to Google Colab, click the "Connect" button, which allocates resources like CPU and RAM . - Google provides approximately 12.7 GB of RAM and 107 GB of storage, along with four CPU cores . **Using Notebooks** - Notebooks in Colab allow you to run code cells easily by clicking the play button, which provides a sense of achievement and encourages experimentation . - It's important to verify that the allocated resources are visible through RAM and disk indicators . **Basic Python Concepts** - **Variable Initialization**: Variables can be initialized using the syntax `variable_name = value`. For example, `student_name = "Alice"` . - **Data Types**: Common data types include integers, floats, strings, and booleans. For instance, `age = 25` (integer) and `name = "Alice"` (string) . **Rules for Variable Names** - Variable names must start with a letter or underscore and cannot contain spaces or special characters like hyphens . - Reserved words in Python, such as `if`, cannot be used as variable names . **Basic Arithmetic Operations** - Python supports basic arithmetic operations: addition (`+`), subtraction (`-`), multiplication (`*`), and division (`/`). For example, `result = 3 * 4` will yield `12` . - The modulus operator (`%`) returns the remainder of a division. For example, `16 % 5` results in `1` . **Practical Applications** - To calculate the area of a rectangle, use the formula `area = length * height`, where both `length` and `height` are variables assigned with numeric values . - Experimentation is encouraged; students should practice by creating their own variables and performing operations on them . **Conclusion of Session** - The session concludes with encouragement to practice and explore Python coding further, with the next class focusing on more advanced topics . You Can Also Check Notes From Given Link: unstuckstudy.com/share/1fecfd9a-fc13-4b74-8972-0fe6b246d82a Jazak Allah ❤
I am A 11 years old teen namely Hassan And I want to do something huge for my nation in technology field especially AI so I was inspired by your videos so I started to watch your Playlist Related Ai
Sir one suggession for your course, Can you start Q/A Live session once a week? It will be very useful. Thank you so much for starting this wonderful course
Hello sir, we are watching your recorded lecture and want to know how to practice. You have shared assignments for our online students, but how can we practice? Is there any possibility for us? Thank you, respected sir.
You are doing great work But I should suggest one thing that you should try to add all links in description it will be helpful for us Highly motivated from you😊
2. Swap variables using two variables x = 10 y = 15 #creat a temprary variable temp=x x = y; y = temp; print("X =", (x)); print("Y =", (y)); Output: X = 15 Y = 10 #xevensolutions
I have no background in computer science but yes I am trying here with you after 10years of study gap.. Kya hum seekh payengy ? I am now watching your 5lecture and understanding about 70%concepta par ab to programming start hugai ha😊
In today lecture i was unable to understand what do and how to do simple thing is that how i start and where to i start, I hope in next lecture i will be able to understand very well python.
Sir main ADP ky 2nd semester main hun. Agy main Data science y Artificial intelligence kadna chati hun to next ab konsi degree choose karu math aur computer science main sy???? please giude me ??
I'm graduated in commerce 2014. After the Gap of 10years now I started webprogramming , by watching RUclips videos and now I started AI with the help of your videos
are you earning?
Print function ka bata dien
I AM from dera bugti backword area of balochistan i have done BBA. it is a little bit hard but i am very happy to say that i have gain so much information about AI i am learning and guiding my friends and family members as well thank u sir so much respect for you and your entire team that you are doing very working hard to keep guiding us .proud of you sir and so much respect for you sir .. lots of love💗
Yeah lots of love and respect to Balochistan it's people from Lahore Punjab may Allah help our country give some guidance to our policies makers ❤❤❤❤
thats great zahid bro..i am also from dera murad jamali..watching these lectures..want to do something for my community and bring awareness in youth
good. God Bless.
I am a school teacher and i have two kids , having nominal salary package, i have seen your video on u tube and i got so inspired by your way of teaching then i decided to learn with you. Now i am attending your online lectures and i am learning alot with you. No doubt i will be better knowledgeable than before. Thanks for your efforts of spreading light of knowledge in our nation.
good
Me too bro 😊
4th lectures completed 😊
I am a mother of 2 little babies but I am to much motivated to learn Ai .
❤God bless you all the team members of xeven
00:10 Programming enables communication and logical thinking.
02:42 Programming is applicable in real life scenarios
07:15 Programming languages involve a set of instructions to communicate with the computer.
09:44 The evolution of software to solve problems
14:22 Python is a server programming language used for creating different systems from the web browser.
16:22 Variables in a program store values for later use.
20:25 Understanding the Boolean data type in programming
22:54 Conventions for naming variables are important
27:26 Introduction to Club Google Club and its significance
29:25 Google Colab provides a seamless environment for running Python code and installing packages.
33:55 Test the practical application and review resources allocation
35:59 Executing code in Python and initializing variables
40:52 Variables must follow naming conventions
43:07 Avoid using reserved words as variable names in Python
47:32 Introduction to basic programming concepts in Python
49:50 Arithmetic operations in Python
54:23 Understanding division and variable initialization
56:49 Learn about variables, declarations, initialization, and basic arithmetic operations in Python.
Crafted by Merlin AI.
thanks a lot bro
Bhai ye kaisay nikala video main
Am following 5th lecture with 4 kids . After 20 years of gap I am studying AI again. Really thank ful to Mr Irfan And Mr Shiraz for their devoted effeot .
Very nice plz tell me now how much you have completed lectures?
already four lectured watched heading to 5th lecture about programming ......................
thank you so much sir
sir irfan and Sir sheraz hats off
Bro Iska note book kaise milega? Jesse code ko run kar sake? Video me jo note book hai vah?
Iam mom of 2 kids , did my b.e in cs 20 years back now want to start my career and these lectures are main triger point to me ..
God bless u sir irfan and sir sheraz
57:54
for people who need solutions
#using two variables.
a = 50
b = 10
a = a+b # 60
b = a-b # 50
a = a-b # 10
print("a = " + str(a)) # Convert 'a' to a string before concatenating
print("b = " + str(b))
#using 3 variables
a = 50
b = 10
temp = a
a = b
b = temp
print("a = " + str(a))
print("b = " + str(b))
Bro how are you,iam beginner but i learnt all till toady..but i wanna ask how did u write # ..but u didn’t tell about this symbol during lecture …at which time we will use that symbol..kindly tell me still confuse iam not being completing your task
Alhumdulilah sir great job. Although very basic for you but for non technical its a great achievement to do these tasks. thanks
Amazing Sir this is actually life changing..Allah SWT hmain qabil bnain or Allah SWT ap sbki mehntain qabool frmain ameen.Hats off to respected SIr @Irfan Malik.
Sir ye apne Achi baat kahin unse sikho jo practical kr rha he industry me ...meri dil se dua he Ap ko Allah bohot Tarakki den Aaameen .. sir me sikhna chahta hn me internship kr rha tha LLM pr but some reasons mjhe left krna padha phir ap mil gye mjhe Thank tou sir wiss you best .. Chat bot bnana sikhaye mjhe python se.
Thank you all. I have learnt to swap variables as task 2. I have no technical background. I am a content writer but feel need to learn new skills. I defined variables as a=1 and so on and gave command of print ( c,b,a). It gave me result of 321
I really appreciate your passion of delivering knowledge to the less privileged like me and such people.
I am sure it will be very helpful for us to learn and grow. I am really grateful for your guidance and this program.
I am a 14 year old student of computer science and I am in 9 class . I am getting alot of new things by your videos
Thanks for this remarkable hardwork
ooo gud do u want to learn ai
@@zainabme-me4qp of course and I also want to learn web dev
Mr.Irfan is a birriliant instructor.He made mathematics&computing fearless.❤
finally, I found a good course for basic AI tanks irfan malik bhai I am from Afghanistan
Salam sir ap ne Kaha ke ap thori basic samajh Kar Aaye so mein ne other python course ko bhi joined Kiya magar mujhe Kuch khaas samajh nhi Aaya phir mein ne ap ki python ki video dekhi to ye to bohot easy laga thank you so much sir for this course ap or ap ki team bohot Acha work Kar rhi he God bless you and your team
Thank you Sir Sheraz for explaining every thing in details & thanks to other teachers as well to teach us in a nice way. Jazak Allah Irfan bhai to arrange this lecture for all of us
Sir Irfan is great and very sharp. the rest is also excellent and very friendly but Sir irfan and Doctor Sab are marvellous
These concepts are very basic... Appreciate your efforts how you are explaining everything.. Hats off to you😊
Mery uper sy guzr rha hy I hope me kr k rakhon gi.
Great effort sir Irfan and team. You are very respectful and close to my heart
I did it. Jazakallah sir(s) for allllll the efforts.
doctor sahab ka parhane ka tariqa thora complicated hai. bade mushkil se samaj mein ata hai. great efforts .
no
Mashaallah😊 hats of your effort🌺
I have decided to finish this course before starting of AWFERA in Sha Allah
Feeling you are doing which no one want to share practicaly...
Irfan_sir="notebook kaisy hasal karain"
Notes of Lecture No 5👇:
**Programming Overview**
- **Definition of Programming**: Programming is the process of creating a set of instructions that a computer can understand to perform specific tasks. It involves using a programming language to communicate with the computer .
- **Importance of Programming**:
- Enables logical thinking and problem-solving skills.
- Essential for effective communication with computers, as they only understand binary (0s and 1s) .
- Useful in various real-life scenarios, such as giving clear instructions in business or daily tasks .
**Basic Concepts**
- **Variables**: Variables are containers for storing data values. They can hold different types of data, such as integers, floats, characters, and strings .
- **Data Types**:
- **Integer**: Whole numbers (e.g., 1, 2, 3).
- **Float**: Decimal numbers (e.g., 1.5, 2.7).
- **Character**: Single letters or symbols (e.g., 'A', 'b').
- **String**: A sequence of characters (e.g., "Hello World") .
- **Syntax**: Each programming language has its own syntax, which is a set of rules that defines the combinations of symbols that are considered to be correctly structured programs. Proper syntax is crucial for the program to run successfully .
**Programming Languages**
- There are multiple programming languages, each serving different purposes:
- **Python**: Widely used for web development and data analysis.
- **Java**: Commonly used for mobile applications and enterprise-level solutions.
- **JavaScript**: Primarily used for web development .
**Problem Solving in Programming**
- **Debugging**: The process of identifying and removing errors from computer programs. It involves a systematic approach to finding solutions, similar to searching for a lost item by retracing steps .
- **Algorithm**: A step-by-step procedure for solving a problem. For example, planning a trip involves defining steps to reach a destination .
**Practical Application**
- **Google Colab**: An online platform that allows users to write and execute Python code without complex setup. It simplifies the learning process by providing an accessible environment for coding .
**Conclusion**
- Understanding programming concepts, syntax, and problem-solving techniques is essential for anyone looking to become proficient in programming. Each programming language has unique features, but the fundamental principles remain consistent across different languages.
**Google Colab Overview**
- **Execution Environment**: Google Colab provides a complete execution environment with a lot of RAM, allowing easy installation of Python packages without configuration difficulties .
- **Resource Allocation**: It offers a powerful processor and memory, which is beneficial for machine learning tasks, especially if your local machine lacks sufficient resources .
**Connecting to Google Colab**
- To connect to Google Colab, click the "Connect" button, which allocates resources like CPU and RAM .
- Google provides approximately 12.7 GB of RAM and 107 GB of storage, along with four CPU cores .
**Using Notebooks**
- Notebooks in Colab allow you to run code cells easily by clicking the play button, which provides a sense of achievement and encourages experimentation .
- It's important to verify that the allocated resources are visible through RAM and disk indicators .
**Basic Python Concepts**
- **Variable Initialization**: Variables can be initialized using the syntax `variable_name = value`. For example, `student_name = "Alice"` .
- **Data Types**: Common data types include integers, floats, strings, and booleans. For instance, `age = 25` (integer) and `name = "Alice"` (string) .
**Rules for Variable Names**
- Variable names must start with a letter or underscore and cannot contain spaces or special characters like hyphens .
- Reserved words in Python, such as `if`, cannot be used as variable names .
**Basic Arithmetic Operations**
- Python supports basic arithmetic operations: addition (`+`), subtraction (`-`), multiplication (`*`), and division (`/`). For example, `result = 3 * 4` will yield `12` .
- The modulus operator (`%`) returns the remainder of a division. For example, `16 % 5` results in `1` .
**Practical Applications**
- To calculate the area of a rectangle, use the formula `area = length * height`, where both `length` and `height` are variables assigned with numeric values .
- Experimentation is encouraged; students should practice by creating their own variables and performing operations on them .
**Conclusion of Session**
- The session concludes with encouragement to practice and explore Python coding further, with the next class focusing on more advanced topics .
You Can Also Check Notes From Given Link:
unstuckstudy.com/share/1fecfd9a-fc13-4b74-8972-0fe6b246d82a
Jazak Allah ❤
Bro Iska note book kaise milega? Jesse code ko run kar sake? Video me jo note book hai vah?
@@farmergaming3109 bhai mujhe bhi batao not book kese milega
shukriya sir g we are very thank ful to you and your team I am M Awais Ali from Skardu Gilgit Baltistan.
Mahsahallah ❤ Finally 5th Video Successfully completed 🎉 Alhamdullha ✨
I am A 11 years old teen namely Hassan And I want to do something huge for my nation in technology field especially AI so I was inspired by your videos so I started to watch your Playlist Related Ai
Asslam o alikum.
I have to appriciate to you and all of your team members you create a very good session
Jazak Allah Khairaan, Exceptional. My understanding is increasing day by day and also my passion although I am struggling understanding some points.
You all are doing an amazing job! Your course is truly one of the best I have come across, highly recommended
Sir one suggession for your course, Can you start Q/A Live session once a week? It will be very useful. Thank you so much for starting this wonderful course
Alhamdulillah...irfan Sir this lecture of python rules are same like to excel sheet.
MashAllah great work 👍
in my 40+ years of life, i dont see a teacher like IRFAN MALIK..... who are you sir? where you from?.... Gol bless you
Mashallah! very informative
. Jazakallah ♥♥
wow,nice lecture. I like it very much.
much informative lecture جزاك اللهsir
Sir sheraz boht acha samjhaty hain
Valuable Informatics video
Very informative lecture thank you very much sir ..... jazak Allah
SWAP 2 variable using 2 variables
A=3
B=7
B=B+A (B becomes 10)
A=B-A (A becomes 7)
B=B-A (B becomes 3)
A,B
(7,3)
Hello sir, we are watching your recorded lecture and want to know how to practice. You have shared assignments for our online students, but how can we practice? Is there any possibility for us? Thank you, respected sir.
Thank you so much for all these efforts
Thank you so much shehryar bhai you understand the concepts very well 👍
I am very thankful 🙏...I am learning a lot...You are just Amazing Sir......
I am sure it will be very helpful for us to learn and grow. I am really grateful for your guidance and this program.
Really nice sir ! Understandable! Superb lecture!❤❤❤❤
Task 1
name="tayyaba"
number=2
height=4.5
Task 2:
Swap 3 values
a=3
b=4
c=b
print(c)
b=a
print(b)
Great Teacher
Allah ap ko ajar daa ameen
36:00 k baad kuch nhi smjh arha... slides bht blur hai ... please resolve this issue
resoulation (quality) high kare
very informative thanks sir♥
I took course of python they taught same with almost same assignment except swap variables task. Thanks for revision
Amazing lecture ❤
You are doing great work
But I should suggest one thing that you should try to add all links in description it will be helpful for us
Highly motivated from you😊
@Irfan Malik sir kindly inform from
where we collect the notes and quiz
Hardworking team ❤
2. Swap variables using two variables
x = 10
y = 15
#creat a temprary variable
temp=x
x = y;
y = temp;
print("X =", (x));
print("Y =", (y));
Output:
X = 15
Y = 10
#xevensolutions
1. Swap three the variables
student_1 = "Ali"
student_2 = "usman"
student_3 = "Faizan"
student_1 = student_2;
student_2 = student_3;
print(student_1);
print(student_3);
Output:
usman
Faizan
I have no background in computer science but yes I am trying here with you after 10years of study gap..
Kya hum seekh payengy ?
I am now watching your 5lecture and understanding about 70%concepta par ab to programming start hugai ha😊
i am making the notebook myself will share It here for the other users to access and play with it ..
Lecture 5 completed self reminder
From where i can get slides
Second task
x , z = 'Cat' , 'Dog'
print(z)
print(x)
Dog , Cat
Swap the 2 values
57:50
thank for sharing information
THANK YOU ❤❤❤
Swap the 3 value
a=10
b=20
c=30
a,b,c=b,c,a
Print(a,b,c)
Please also share link of co Lab note book used in this video. Please place link in video description for all future visitors.
Hello Sir,
Task 02-
Q1. Swap Variable Using 3 variables?
x=10
y=20
print('x= ',x,'y= ',y)
z=x
x=y
y=z
print('x= ',x)
print('y= ',y)
Q2. Swap variable using 2 variables?
x= 10
y=20
print('x= ',x, 'y= ',y)
x=x+y
y=x-y
x=x-y
print('x= ',x)
print('y= ',y)
How to access to do all this practice?
Jazakallaho khaira Sir
Allah accept you workings...
Well done Haris bhae
Wonderful
Please share note book link in description.
सर i m not educated in this field but egour to build my own program with your motivation
Sir where can i access colab notebook
SWAP 2 variable using 2 variables
A=3
B=7
B=B+7 (B becomes 10)
A=B-A (10-3) ----> 7
B=B-A (10-1) ---> 3
A,B
(7,3)
Correction Line 3 B=B+A
is there a notebook, for practice? I have just joined this course now.
a =10
b= 20
a , b = b, a
print(a)
print(b)
wonderful story 4 variable
Mashallah ❤❤❤❤❤
Sir kindly es course sy related quiz aur assignment ka link bhe share kr dain
In today lecture i was unable to understand what do and how to do simple thing is that how i start and where to i start, I hope in next lecture i will be able to understand very well python.
Can we have access to slides and notes which our respectable instructors taught @everyone
Asslam u Alaikum sir,
Please lecture ka start tilawat,ya bismillah and Asslam u Alaikum k sath kia karen.
ok g
Sir main ADP ky 2nd semester main hun. Agy main Data science y Artificial intelligence kadna chati hun to next ab konsi degree choose karu math aur computer science main sy???? please giude me ??
syntax ko hm grammer ruls kah saktay hain, hr language ki gramer hoti ha, aisay hi comuter language m syntax hota ha.
Love you ❤
Sir apki slides bht blur hain..36:00 se smjh nhi arha
Programming language is use to tell computer what to do then there are many languages and why we have to learn multiple languages ?
syntax is a set of rules for any language.
why don't use replit complier .it's very easy to use.
sir ya google colab to open hi nahi horaha...please kuch bi batanai sa pehlay open karnai ka tareeka bi bataya karo hamara time zaya hojata hai.
Brother ap is link ma click krein colab open hu jaey ge 😊
A = 3
B = 7
A = A+B
B = A-B
A=A-B
print (A,B)