Assignment Operators in C

Поділитися
Вставка
  • Опубліковано 5 жов 2024

КОМЕНТАРІ • 468

  • @ProgrammingwithArijit
    @ProgrammingwithArijit 4 роки тому +566

    Ans is 51
    Explanation: First of all we have to remind the fact that printf function not only print the value but also returns the number of character is printed.
    So in this problem a=7=0111
    then a^=5 means a=a^5=7^5=(0111)^(0101)=0010=2
    so a=2.
    Then first of all the inner printf function will execute and as we know a+=3 means a=a+3=2+3=5 then 5 will be printed and it will return 1 as it only prints one character
    so the outer printf function will look like printf("%d",1). it will again print 1 .
    so the output will be 51

    • @simonhdenis
      @simonhdenis 4 роки тому +21

      Thanks so much for fleshing out the answer more! This explanation should have way more likes. Where I struggled most was understanding why CHAR was used and what it would mean (because the code looks like it should only return integers) for the print out once the program was run.

    • @017aruns4
      @017aruns4 4 роки тому +1

      @@simonhdenis I have the same problem

    • @sarojkumardas3640
      @sarojkumardas3640 4 роки тому

      Good

    • @vibhurathore63
      @vibhurathore63 3 роки тому +4

      omg what a explanation
      thanks dude

    • @rohitkadu5217
      @rohitkadu5217 3 роки тому +5

      I am not getting it ... a=4 and b=3
      Then a ^ b = 7 so a = 7
      Then a ^ b = ( 7 ^ 3 ) So b = 4
      Then a ^ b = ( 7 ^ 4 ) so a = 3
      OP = 43 ... How cum 51 .

  • @AbbaJi-gm4vc
    @AbbaJi-gm4vc 4 роки тому +192

    Wow....As u already said in 1st lecture u will fall in love with this subject...It's happening 😄😄😍😍

  • @nikhiljain7802
    @nikhiljain7802 4 роки тому +166

    a = a ^ 5 = 7 ^ 5 = 2;
    a = a + 3 = 2 + 3 = 5;
    no of successfully printed characters = 1;
    Output:- 51

    • @rajkumartpro3226
      @rajkumartpro3226 4 роки тому +8

      i am not able to understand can u explain me

    • @nikhiljain7802
      @nikhiljain7802 4 роки тому +67

      ^ is a bitwise Xor operator
      Perform xor bw 7 & 5 according to truth table
      Then updated value of a is 2
      Now perform 2+3
      Then final value of a is 5
      1st printf statement ( inner one) will print 5
      Then return no of successfully printed character i.e., 1
      Then outside printf statement will print 1

    • @104_sakshigupta8
      @104_sakshigupta8 4 роки тому +3

      Thanks @nikhil😊

    • @nikhiljain7802
      @nikhiljain7802 4 роки тому +1

      Welcome @sakshi🤗

    • @bhaktikharatkar9358
      @bhaktikharatkar9358 4 роки тому

      @@nikhiljain7802 👍

  • @rakibhasan111
    @rakibhasan111 5 років тому +77

    The Answer will be 51. Because,2nd printf function will print 5 and then 1st printf function will print 1(cause 1st printf function will read how many chatacter lies in 2nd printf function).

    • @NazmulHasan1
      @NazmulHasan1 4 роки тому +1

      Perfect Answer

    • @manavpatelpatel9735
      @manavpatelpatel9735 3 роки тому +1

      perfect answer

    • @arvinthathikesav3531
      @arvinthathikesav3531 2 роки тому +1

      Sir please can you explain why that outer printf function is printing no of character in 2nd printf function.. or say in which lecture in this playlist they said that

    • @prabasri6598
      @prabasri6598 Рік тому +1

      @@arvinthathikesav3531 11th lecture

    • @judyannjumachag4726
      @judyannjumachag4726 11 місяців тому +1

      It's 5 not 51

  • @shreenathkv3879
    @shreenathkv3879 3 роки тому +16

    Wth just 2 weeks ago I didn't know nothing about c language now I'm happy to know that I know some basics of it.
    I didn't even know how I learnt this much.
    Thanks × ♾️

  • @etcerror
    @etcerror Рік тому +7

    Explanation: First of all we have to remind the fact that printf function not only print the value, it also returns the number of character in print statement.
    #include
    int main()
    {
    printf("%d",printf("

    "));
    return 0;
    }
    Ans is 2
    First you try to understand this code and next try the homework problem.

    • @sumit4789
      @sumit4789 10 місяців тому +1

      bro can u explain about this topic , u have any videos about this topic ?

  • @kwynart6399
    @kwynart6399 5 років тому +9

    51 bcz a=5 which is written in inside of 2nd print function and ist print function will print the length of 2nd print function's output.

  • @ngwemo
    @ngwemo 2 роки тому +12

    since a = 7 with binary of 0111
    and a ^=5 , 5 has binary decimal reprs of 0101.
    You can also apply the logic of XOR here it works.
    i.e a ^=5=7^5 .... 0111 and 0101 returns as result of binary 0010 which is 2
    inner function executes first printing 5 and returning 1 as it prints only one character.
    And then the outer function will the returned 1 character resulting to 51.

  • @ig_tobiplayz
    @ig_tobiplayz Рік тому +3

    Ans is 51..
    As we solve, the inner printf gives the output '5' . And gives the length of its answer(5) which is '1' to the outer printf instead or origional value 5.
    Hence
    The value printed is the result of inner printf = 5 and outer printf =1
    On combining it gives = 51.

  • @mouadabid1272
    @mouadabid1272 2 роки тому +8

    for the ones asking why a which is an integer was declared as a char , it s simply cuz char is an integer and the smallest one if we count long ... U may be suprised and wondering why well characters are basically numbers, if you check the ASCII table you will understand more , and as u may know char can store up to 127 numbers.

  • @anandkumar-bd2ru
    @anandkumar-bd2ru 2 роки тому +4

    51. 5- output of inner print . 1- number of charcters in "5"i,e. 1.

  • @vittorio9763
    @vittorio9763 Рік тому +1

    The function print 51, 5 (bitwise plus sum) and 1(the return of printf function)

  • @reality_lyrics_8d
    @reality_lyrics_8d 3 роки тому +1

    51 is the actual output of the program coz the printf() function not only prints the content inside it but also returns the count of the available contents in it..

  • @arularasij3099
    @arularasij3099 4 роки тому +4

    Sir... You're explanation is really awesome.... After watching your videos .... I'm very much interested in C language

  • @nisha6310
    @nisha6310 4 роки тому +6

    Answer will be 51 as the second printf will print 5 as the result got by calculation and after that first printf will count the no of characters which is only one (1). So the final answer will be 51

  • @vivekparmar9666
    @vivekparmar9666 2 роки тому +2

    You are doing great work,I don't have more words to specify how good your teaching skills is,...
    Keep it up...

  • @Vikasc28
    @Vikasc28 3 роки тому +4

    a = a ^ 5 = 7 ^ 5 = 2;
    a = a + 3 = 2 + 3 = 5
    The inner printf will be executed first whose o/p is 5 and then the outer printf , whose input is printf("%d", a+=3); since any printf returns the number of characters printed succesfully our return value will be 1, therefore o/p is 51.

    • @judithani2391
      @judithani2391 2 роки тому +2

      Please I don't understand where the 1 is coming from.

    • @alirizvi6602
      @alirizvi6602 Рік тому

      @@judithani2391 it comes from 1st printf(), printf() return the no. of characters printed.

  • @heyrishabh13
    @heyrishabh13 5 років тому +25

    51
    Thank you sir for making such a wonderful course freely available for us.

    • @khalilrin-ju3nm
      @khalilrin-ju3nm 5 років тому

      true. but why result is 51?

    • @kwynart6399
      @kwynart6399 5 років тому +1

      @@khalilrin-ju3nm output of 2nd print function a=5,ok, then ist print function would print the length of output, ok got it.

    • @adityakumarsingh216
      @adityakumarsingh216 4 роки тому +3

      @@khalilrin-ju3nm because first xor operation prints 5 on screen then it returns number of characters to other printf which in this case is 1,hence the output 51

    • @gopalakrishnanpadmanabhan2182
      @gopalakrishnanpadmanabhan2182 3 роки тому

      @@kwynart6399 thank you bro. Because of u i understood this concept. You gave a very good explanation for that thanks a lot😇😇😇

  • @youssefharby1153
    @youssefharby1153 2 роки тому +2

    Answer is 51
    first: a^=5; equivalent to a=a^5; // 0111 XOR 0101 = 0010 then the result is 2
    second: printf("%d",a+=3); // will print first the the output on screen will be (5)
    finally the second print will print the number of char returned by the first printf where is 1 char '5'

    • @goldenx2417
      @goldenx2417 Рік тому

      In which vedio it is said bruh??..

  • @mohindarsaiamarnadh4533
    @mohindarsaiamarnadh4533 5 років тому +5

    here the answer is five one because 1st it prints the 1st printf value of a+=3 that is 5 and then 2nd printf funtion returns some value from 1st printf function that no of characters display on screen that is 1 so it is printed so output will be five one

  • @techiez
    @techiez 3 роки тому +4

    Best tutorial on youtube.I only want say Thank you for these amazing videos.Thanks a lot.

  • @Ms.Robot.
    @Ms.Robot. 3 роки тому +5

    Very very good explanation. A sign of a smart person is making complex things very easy to understand.

  • @pusuluruchandana8432
    @pusuluruchandana8432 5 років тому +4

    Ans is 51 bcz 1 St printf prints the 5 as output and 2nd printf prints the number of digits in the 1 St printf o/ p (1)it prints

  • @deepeshsunuwar1086
    @deepeshsunuwar1086 4 роки тому +2

    the answer is 51.
    because here ''a'' is 7 which is (0111),
    then a^=5 is equals to 2 after processing ,
    so after that a+=3 mean (2+3) which is 5,
    now the second printf is executed at first so 5 is printed at the first
    then the first printf prints 1 that is the number of character that is printed successfully....
    so the final answer is 51.............

    • @goldenx2417
      @goldenx2417 Рік тому

      Then the ans should be 15 na?..

  • @APstudent-y6s
    @APstudent-y6s 7 місяців тому

    4:21 opt c i.e 51..
    heartily thankyouu to the educator and neso academy! you guys r doing incredible work... keep up! hatt's off 🎉❤🙏

  • @anishakumari5267
    @anishakumari5267 5 років тому +4

    The correct output is 51
    Because inner printf prints the output of the expression and outer printf return the number of characters that is successfully prints on the screen
    And here number of character is 1
    So first print 5 then return 1
    i. e 51

    • @lcsuma3460
      @lcsuma3460 5 років тому

      can you please explain how inner printf gives 5 as output

    • @anishakumari5267
      @anishakumari5267 5 років тому

      First u need to calculate xor of 7 and 5
      7^5 =(0111) ^(0101)
      =(0010)
      =2
      i.e a=2
      a+=3
      a=5

    • @damianmaley4167
      @damianmaley4167 5 років тому

      @@anishakumari5267 please can you explain how outer printf prints 1?

    • @anishakumari5267
      @anishakumari5267 5 років тому +1

      @@damianmaley4167
      The printf function not only print the statement but also return the number of characters so here inner printf print 5 and outer printf return the character 1.
      Because inside the outer statement there is only one character I. e 5
      That's why it returns 1
      And final output becomes 51

    • @vyomk9639
      @vyomk9639 5 років тому

      @@anishakumari5267 but here is %d. I think %c should be written here

  • @diduknow493
    @diduknow493 2 місяці тому

    // First, the inner printf is evaluated
    // printf("%d", 5) prints 5 and returns the number of characters printed, which is 1
    // The outer printf then prints this return value, which is 1

  • @pratibhakanwasi9884
    @pratibhakanwasi9884 2 роки тому +2

    I love neso Academy bcz it's make complex problems to easiest ones 😜

  • @Official-tk3nc
    @Official-tk3nc 4 роки тому +54

    Guys they are providing everything for free and some idots dislikes these types of videos. I think they need mental treatment

  • @mauryaashish1865
    @mauryaashish1865 3 роки тому

    d is correct!
    Inner most printf will return 5 as output and outer printf will return counting of inner printf i. e. 1
    So output is 15.

  • @ajmalkhaniit
    @ajmalkhaniit 4 роки тому +2

    a=7^5=2 and a+=3= 5 first print 5 and then printf return length of char which is 1 so ans is 51

  • @cocoteddy4356
    @cocoteddy4356 3 роки тому +2

    Really Recommend this channel !!!!!!

  • @AspirantTD-warrior
    @AspirantTD-warrior 7 днів тому

    Here, we first do a^5 and then assign it to a. Since a=7=0111, and 5=0101
    7 XOR 5 will give 0010=2
    So, new a=2
    Now, first the second argument of printf gets evaluated, which is another printf argument, according to which a=a+3=2+3=5... And it will print the output as 5
    Then second argument becomes "5", and printf displays number of characters of this string, i.e. 1

  • @compangit1524
    @compangit1524 Рік тому +1

    Comments for myself: char that is equal to 7 (not '7') can act like a normal integer. Therefore shorthand += operation will work here. Answer is 51, the inner printf function will print 5 and return int=1, then the outer printf will print that returned value.

  • @amishasahu2018
    @amishasahu2018 3 роки тому

    the output is 15 because 1st it will print the no. of successful characters=1,then the value of a 5. so ans is 15

  • @rahulkumar-iy6vf
    @rahulkumar-iy6vf 4 роки тому +1

    Your all lecture make things quiet easy
    Good teacher
    Thanks you sir

  • @ramzeynoa
    @ramzeynoa 5 місяців тому

    Printf("%d",a+=3);
    The output is 5
    Printf("%d",Printf("%d",a+=3));
    OUTPUT is 1
    Thus brings us 51

  • @adarshp82
    @adarshp82 4 роки тому

    51 is correct output
    a^=5;=2 binary is 0010
    Then a+=3 =2+3=5

  • @phanindrasaikuriti6434
    @phanindrasaikuriti6434 3 роки тому +1

    51... The way of explaining is fantastic !!!

  • @rutvikvaghadiya3659
    @rutvikvaghadiya3659 3 роки тому

    #include
    int main(){
    int a=7;
    a^=5;
    printf("%c", printf("%d",a+=3));
    }
    Output:
    5
    I thought it would be 55 as outer printf also return 5(in ASCII value)
    Pls how is this ??

  • @englishpodforfluency
    @englishpodforfluency 3 роки тому +5

    Thank you very much sir.... U always simplify the the concepts that we think to be the most difficult... Thank you very much sir... May you be bestowed with a lot of subscribers

  • @goutamvohra3442
    @goutamvohra3442 4 роки тому

    Ans is 51 because two printf function are used second will print the result and first will print the no. Of characters lies in 2nd printf function

  • @kuldeepsinh2142
    @kuldeepsinh2142 3 роки тому +1

    inke liye swarg me alag hi sthan hoga💝🔥🔥

  • @hasinirajapaksha333
    @hasinirajapaksha333 Рік тому +1

    Answer is 51 .if u are curious about how come 1.Try this code
    int main()
    {
    char a=7;
    a^=5;
    printf("%d",printf("%d




    ",a+=3));
    return 0;
    }
    answer is
    5
    6
    Cause there are 6 characters in here those are




    and a+=3.
    In earlier code it only has a+=3 thats the only character and thats why its print 1 after 5.

  • @michaelpatterson1096
    @michaelpatterson1096 2 роки тому

    I think you need a video or to point people to the existing video that explains the answer. (E.g. The outer printf will return 1 as it only prints one character
    so the outer printf function will look like printf("%d",1). it will again print 1). Yeah, sort of makes sense but, not really.

  • @shashinegative9366
    @shashinegative9366 2 роки тому

    in the first practice set .., there is an similar example of this please check that..
    ans is 51

  • @sanswarup3198
    @sanswarup3198 3 роки тому +3

    Learning much better than my accademy 💖

  • @kritikawagh5732
    @kritikawagh5732 2 роки тому

    Ans is 51 ...
    Your video really helped me tnx ❤️

  • @rafialom3224
    @rafialom3224 8 місяців тому

    thanks for your easy lecture.

  • @NMAJJINEERAJA
    @NMAJJINEERAJA 4 роки тому +1

    Finally I am able to answer the questions without any confusion

  • @rajkumartpro3226
    @rajkumartpro3226 4 роки тому +11

    i got made with this question, the ans is not 51 that is 5,1

  • @prodiptamondal1758
    @prodiptamondal1758 3 роки тому +2

    homework problem is just amazing

  • @krishintown5645
    @krishintown5645 5 років тому +1

    51....
    Becoz..printf not only prints the content on the screen,it also returns the number of characters that it successfully prints on the screen

  • @saraawan51
    @saraawan51 4 роки тому +6

    What a great Mentor.😍

  • @ashishambade3285
    @ashishambade3285 2 роки тому

    Your teaching skills are awesome👍

  • @saiteja7831
    @saiteja7831 4 роки тому +1

    My doubt is why it will print 5 as first and then it prints 1 . I understand that there are two printf but why can't it print 15 please do reply I am your subscriber

    • @kirtitung4877
      @kirtitung4877 4 роки тому

      Bro plz watch from the first then only you will understand

    • @ProgrammingwithArijit
      @ProgrammingwithArijit 4 роки тому

      first the inner printf print and then it will return the number of characters it printed on the console

  • @shrikrishnaghule624
    @shrikrishnaghule624 3 роки тому

    #include
    int main()
    {
    char a=7;
    a^=5;
    printf("%d",printf("%d",a+=3));
    return 0;
    }
    Ans of first printf [printf("%d",a+=3));] is 5 and the 1 is comes from the %d in second printf [printf("%d"], ....%d in second printf just print the total number of characters in output. what if the out put is not 5 in first printf ,what its 50 then the 1 in the second printf is going to replace by value 2. then the ans is 502.
    let me know if its right. just tried as shown in the one of the previous videos.

  • @muwon8633
    @muwon8633 2 роки тому

    thank you for all you doing

  • @rutvikvaghadiya3659
    @rutvikvaghadiya3659 3 роки тому

    In hw sum, I thought all the options will be wrong answer would be 55 as under printf will return 5 and outside printf will result 55 But when I check the answer by running program is 51

  • @anjalikori3823
    @anjalikori3823 3 роки тому

    Sir in shorthand assignment operator you put "than" instead of "then"

  • @ECESakthivelR
    @ECESakthivelR 2 роки тому

    This is two printf statement ok .
    a^=5 then char value 7 bit value=0111ok .then char value 5is 0101.ok binary of xor value =2(means 0010) ok.second printf is a+=3 ans is 5 then first printf %d means how many character in 2nd printf is only one character(5) okso the final ans is five one 51

  • @Foodfind217
    @Foodfind217 Рік тому

    Output :
    C) 51

  • @miketaylor7125
    @miketaylor7125 2 роки тому

    What is the second function like? I know the first function is a = a + 3 and my a is 2. There fore, a=5

  • @weluga1550
    @weluga1550 3 роки тому +1

    Can you please explain this assignment operators with examples so i can understand them clearly

  • @awalkingnosebleed
    @awalkingnosebleed 10 місяців тому

    why to define variable as char? output is the same if it was taken as integer.

  • @viveknirmal4811
    @viveknirmal4811 5 років тому +2

    5 + print one character (5) i.e. 1 so output is 51

  • @tesla8673
    @tesla8673 3 роки тому

    i knew the answer without looking comments its 51
    realy you're best

  • @alisonmaung4638
    @alisonmaung4638 2 роки тому

    #include
    int main(){
    char a =7; // 7 = 0111
    a ^= 5; // 5 =0101
    /*
    0111
    0101
    ____
    0010
    */
    printf("%d", printf("%d", a+= 3));
    // the nested printf will execute first, which will print out 5
    /* the outer printf will execute later, and return 1
    since the characters of the first one is 1(nested printf)
    */
    // since there is no space it will be 51
    return 0;
    }

  • @b.square7129
    @b.square7129 2 роки тому

    S the output 51 here inner printf gives 5 and outer printf gives how many sets in that outer printf

  • @muskanustad3834
    @muskanustad3834 2 роки тому

    Is there any special purpose in homework questions so that we define a as a char data type...if we define as int data type output will be same then why we did like this???

  • @NMAJJINEERAJA
    @NMAJJINEERAJA 4 роки тому +1

    51 is the answer 🤗

    • @holygod1490
      @holygod1490 3 роки тому

      Can u please explain
      I got individual 5 and 1 , how to becomes 51

  • @kushalava007
    @kushalava007 4 роки тому

    want to see the person behind all these great lechtures

  • @EsaBose
    @EsaBose 5 років тому +4

    Is the question correct with char? It would print 51 if this code had int

    • @imharishsambasivam
      @imharishsambasivam 5 років тому

      its %d not %c . So its 51

    • @kwynart6399
      @kwynart6399 5 років тому +1

      Char can store integers too

    • @AbbaJi-gm4vc
      @AbbaJi-gm4vc 4 роки тому +1

      Both the casees output will be 51 cause nested printf will give result 5 and outer printf will count the no. Of characters so it is 1 total will be 51

  • @NDurga-gu1kz
    @NDurga-gu1kz 3 роки тому

    a^=5 bainary is 2 a+=3 tha value is 2+3=5

  • @miketaylor7125
    @miketaylor7125 2 роки тому

    Why does the 5 have to return 1? Is that a rule or something??

  • @tufanchakraborty5925
    @tufanchakraborty5925 4 роки тому

    A) 5 ..
    Explanation 7^5=2
    And a+=3 => a=a+3 => 2+3 =5
    I think this is correct if not please correct me

  • @skgeddha3207
    @skgeddha3207 4 роки тому

    Output : 51

  • @Barrier_Breaker01
    @Barrier_Breaker01 10 місяців тому

    ANSWER:---
    BINARY OF a = 0111;
    BINARY OF b = 0101;
    a^=5; which is evaluated as XOR of a = 0111 and b = 0101 ( a= 0111 - b=0101 = 0010) then the value of a = 0010 = 2;
    then a+=3 , 2+3 = 5;
    printf(" 1 ", printf("5", a+=3));
    then printed first 5 and after 1;
    O/P:
    51

  • @nikitachauhan6288
    @nikitachauhan6288 4 роки тому +2

    Yr ek doubt h koi bhi bta do jb hm "char" l rhe h toh sir n %d q lgaaya it should be %c na

  • @roshangupta8161
    @roshangupta8161 Рік тому

    option c is correct.

  • @CSEJHANSI
    @CSEJHANSI 2 роки тому

    I have an doubt if length of 2nd printf is 1 how it prints 51

  • @thebelieverkhan3741
    @thebelieverkhan3741 5 років тому +1

    answer is 5 for a+= and 2 for a^=

  • @sanjaysoni-hh3xd
    @sanjaysoni-hh3xd 5 років тому +1

    a^=2 and a+=5 final output is 5

  • @priyaavula741
    @priyaavula741 4 роки тому +1

    Ans is 5

  • @selvalakshmis.v4232
    @selvalakshmis.v4232 3 роки тому

    51
    Thank you, Sir

  • @crazycatgirl4514
    @crazycatgirl4514 3 роки тому

    The output of the program is 51

  • @abdulfahad4498
    @abdulfahad4498 4 роки тому +1

    the answer is c=51

  • @biswajitrout4710
    @biswajitrout4710 4 роки тому

    Thanks 🙏🏿

  • @true4189
    @true4189 4 роки тому

    Thank u

  • @parampatel7506
    @parampatel7506 3 роки тому

    Mind blowing

  • @santoshodeyar9736
    @santoshodeyar9736 5 років тому

    its 5 answer because first it perform xor operation then add that number by 3 so it will became 5 in final

  • @sidharthasoka5918
    @sidharthasoka5918 4 роки тому

    is the answer (a)5?

  • @kancherladilip2603
    @kancherladilip2603 Рік тому

    the output is 51;

  • @subh829
    @subh829 4 роки тому

    Output = 51

  • @OOPO_-zw2ee
    @OOPO_-zw2ee 3 роки тому

    How we got 51 please explain sir

  • @adithya_galipelli
    @adithya_galipelli 3 роки тому

    what if it is given a =+ 1

  • @ankitnirmal4603
    @ankitnirmal4603 3 роки тому

    4:09 answer is 51

  • @shubhamdathia4363
    @shubhamdathia4363 5 років тому

    output is 51
    when i added

    as
    #include
    int main()
    {
    int a=7;
    a^=5;
    printf("%d",printf("%d

    ",a+=3);
    return 0;
    }
    output was 5
    3
    and when i used double
    's
    as
    #include
    int main()
    {
    int a=7;
    a^=5;
    printf("%d",printf("%d
    ",a+=3);
    return 0;
    }
    output was 5
    2
    help me out

    • @user_at180
      @user_at180 5 років тому +1

      coz new line also treated as a character
      here output 5 is one character and new line is one character so output is like that

  • @venkatesh3439
    @venkatesh3439 4 роки тому

    a=7^5=2
    Inner pf a=2+3=5
    Out pf 1
    51

  • @opviperlegend9914
    @opviperlegend9914 3 роки тому

    Ans 51
    I used compiler
    I couldn't do by hand