+ 1
Help me pleaseā„ļø
When I try putting like these codes, for example ā2 + 2ā in the ācodeā the results thats came to me is āno outputā does anyone know why it becomes like that?
3 Answers
+ 7
Assuming you are using Python :
You need to write function print().
print("2+2")
// output 2+2
if you want output to be 4 then don't write " "
print(2+2)
+ 4
Which programming language u r using?
can you share you code?
+ 2
I solved my problem already thanks man