I have two fields. Marks obtained as field_marks_obtained
Total Marks as field_total_marks
Now I have added both in view and added a custom text in which i am writing custom twig to output the percentage. I have tried with
{{ field_marks_obtained }}
which gives me output as 359.00
{{ field_marks_obtained + field_total_marks}}
giving result as 2.
{{ field_marks_obtained * field_total_marks}}
giving result as 1
How can i do arithmetic operation with twig. I have also tried with
{% set marks = field_marks_obtained * 1 %}{{ marks }}
which also returns 1