| 
Лимит времени 2000/4000/4000/4000 мс. Лимит памяти 65000/65000/65000/65000 Кб.  Question by Ibrahim Mesecan. 
  
 
Passing the course
Your professor is calculating the course average 
this way:
 
- 45% of the final exam,
  
- 35% of the Midterm exam, 
  
- 20% of the homework 
   
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.
Input specification 
You will be given three integers: Final exam 
result, Midterm exam result, and Homework 
where 0 ≤ each grade ≤ 100. 
 Output specification 
Show 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
 |   
 Для отправки решений необходимо выполнить вход.
  
 |