| 
 
 
 | Лимит времени 2000/4000/4000/4000 мс. Лимит памяти 65000/65000/65000/65000 Кб. Question by Ibrahim Mesecan.
 
 
   Passing the courseYour professor is calculating the course average 
this way:
 
After calculating the student average, he wants to 
decide if the student has passed or failed. Write a 
program that reads 3 exam results and then decides 
if the student has passed or failed. A student 
passes if his average is greater than or equal to 59.5.45% of the final exam,35% of the Midterm exam, 20% of the homework  
Input specificationYou will be given three integers: Final exam 
result, Midterm exam result, and Homework 
where 0 ≤ each grade ≤ 100.
 Output specificationShow just one result: "Passed", or "Failed"
 
 | Sample Input 1 
 
70 75 60
 | Sample Input 2 
 
20 70 80
 |  | Sample Output 1 
 
Passed | Sample Output 2 
 
Failed | 
 Для отправки решений необходимо выполнить вход.
 
 
 |