Q16.Consider the following code snippet:
```
a, b, c, d = input()
print((a + b + c) * int(d))
```
What will be the output of the code given above for the following input?
```
1234
```
Save
Check
Details
Q16
16 Oct 2022
Q16.Consider the following code snippet:
```
a, b, c, d = input()
print((a + b + c) * int(d))
```
What will be the output of the code given above for the following input?
```
1234
```