Python
Python
COMPUTERSCIENCE&ENGINEERING
1. Source Code:
Question 1 – Write a program to enter two numbers and perform all arithmetic
operations.
3.Screenshot of Outputs:
Output: 1
Output:2
Output:3
Codechef problem:
Question- In a coding contest, there are prizes for the top rankers. The prize scheme is
as follows:
t = int(input())
for i in range(t):
x, y = map(int,input().split())
print((x*10)+(y*90))
Output: